IntegratedAxis
- class sherpa.models.regrid.IntegratedAxis(lo, hi)[source] [edit on github]
Bases:
Axis
Represent an integrated axis of a N-D object.
- Parameters:
lo (array_like or None) – The starting point of the axis. If
lo
isNone
or[]
then the data axis is said to be empty. The axis can be in ascending or descending order.hi (array_like or None) – The ending point of the axis. The number of elements must match
lo
(eitherNone
or a sequence of the same size). Each element is expected to be larger than the corresponding element of thelo
axis, even if thelo
array is in descending order.
Attributes Summary
The ending point of the data axis
Is the axis ascending?
Is the axis empty?
Is the axis integrated?
The size of the axis.
The starting point (lowest value) of the data axis.
Methods Summary
overlaps
(other)Check if this axis overlaps with another.
Attributes Documentation
- end
- hi
- is_ascending
Is the axis ascending?
The axis is ascending if the elements in
lo
are sorted in ascending order. Only the first and last elements are checked, and it is assumed that the elements are sorted.
- is_integrated
- lo
- size
- start
Methods Documentation
- overlaps(other) [edit on github]
Check if this axis overlaps with another.
- Parameters:
other (Axis instance) – The axis to compare to.
- Returns:
True if they overlap, False if not
- Return type: