PointAxis
- class sherpa.models.regrid.PointAxis(x)[source] [edit on github]
Bases:
AxisRepresent a point (not integrated) axis of a N-D object.
The length can not be changed once set.
- Parameters:
- xarray_like or
None The starting point of the axis. If
Noneor[]then the data axis is said to be empty. The axis can be in ascending or descending order but this is not checked.
- xarray_like or
- Attributes:
endThe ending point of the data axis
is_ascendingIs the axis ascending?
is_emptyIs the axis empty?
is_integratedIs the axis integrated?
sizeThe size of the axis.
startThe starting point (lowest value) of the data axis.
- x
Methods
overlaps(other)Check if this axis overlaps with another.
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
- is_ascending
Is the axis ascending?
The axis is ascending if the elements in
loare sorted in ascending order. Only the first and last elements are checked, and it is assumed that the elements are sorted.
- is_integrated
- size
- start
- x
Methods Documentation
- overlaps(other) [edit on github]
Check if this axis overlaps with another.