AscendingGrid
- class pyarts3.arts.AscendingGrid(*args, **kwargs)
A sorted
Vectorof always ascending values.The python mapping allows treating this as a
ndarray. But because it has to be sorted in ascending order, modifying the values are not allowed.Sizes
A variable
xof this group may name 1 dimension, read asx.size().Workspace methods that require AscendingGrid
Overview
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Method
Read variable from file.
Method
Method
Method
Method
Saves variable to file.
Method
Method
Method
Method
Method
Method
Method
Static Method
Create variable from file.
See
numpy.ndarray.T.See
numpy.ndarray.dtype.See
numpy.ndarray.imag.See
numpy.ndarray.nbytes.See
numpy.ndarray.ndim.See
numpy.ndarray.real.See
numpy.ndarray.shape.See
numpy.ndarray.size.A
ndarrayof the object.Operator
Operator
Operator
Operator
Allows
array()to be called with the object.Operator
Operator
Operator
Operator
Operator
__format__(self, arg: str, /) -> strOperator
Operator
Operator
Operator
Return hash(self).
Operator
Operator
Operator
Operator
See
numpy.matmulOperator
Operator
Operator
__init__(self, arg: pyarts3.arts.Vector, /) -> NoneOperator
Operator
Operator
Operator
See
iter()Operator
Operator
Operator
Operator
Operator
Operator
Operator
Operator
Operator
Operator
Operator
See
numpy.addOperator
Operator
See
numpy.divmodOperator
__repr__(self) -> strOperator
Operator
See
numpy.matmulOperator
See
numpy.remainderOperator
See
numpy.multiplyOperator
See
numpy.bitwise_orOperator
See
numpy.powerOperator
See
numpy.subtractOperator
Operator
Operator
__str__(self) -> strOperator
Constructors
- __init__(self, a: ndarray) None
- __init__(self, a: numpy.ndarray[dtype=float64, shape=(*), order='C']) None
- __init__(self, vec: Vector) None
- __init__(self) None
- __init__(self, l: list) None
- __init__(self) None
- __init__(self, arg: AscendingGrid) None
- __init__(self, arg: Vector, /) None
Methods
- cumprod(self, axis: object | None = None, dtype: object | None = None, out: object | None = None) object
- cumsum(self, axis: object | None = None, dtype: object | None = None, out: object | None = None) object
- mean(self, axis: object | None = None, dtype: object | None = None, out: object | None = None, keepdims: object = False) object
- prod(self, axis: object | None = None, dtype: object | None = None, out: object | None = None, keepdims: object = False) object
- readxml(self, file: str) str
Read variable from file.
- Parameters:
file (str) – A file that can be read.
- Raises:
RuntimeError – For any failure to read.
- Returns:
file – The file path found (may differ from input due to environment variables).
- Return type:
- savexml(self, file: str, type: str = 'ascii', clobber: bool = True) str
Saves variable to file.
- Parameters:
file (str) – The path to which the file is written. Note that several of the options might modify the name or write more files.
type (str, optional) – Type of file to save. See
FileTypefor options. Defaults is “ascii”.clobber (bool, optional) – Overwrite existing files or add new file with modified name? Defaults is True.
- Raises:
RuntimeError – For any failure to write.
- Returns:
file – The file saved. May differ from input.
- Return type:
- std(self, axis: object | None = None, dtype: object | None = None, out: object | None = None, ddof: object = 0, keepdims: object = False) object
- sum(self, axis: object | None = None, dtype: object | None = None, out: object | None = None, keepdims: object = False) object
- trace(self, offset: object = 0, axis1: object = 0, axis2: object = 1, dtype: object | None = None, out: object | None = None) object
- var(self, axis: object | None = None, dtype: object | None = None, out: object | None = None, ddof: object = 0, keepdims: object = False) object
Static Methods
- fromxml(file: str) AscendingGrid
Create variable from file.
- Parameters:
file (str) – A file that can be read
- Raises:
RuntimeError – For any failure to read.
- Returns:
artstype – The variable created from the file.
- Return type:
Attributes
- T: object
See
numpy.ndarray.T.
- dtype: object
See
numpy.ndarray.dtype.
- imag: object
See
numpy.ndarray.imag.
- nbytes: object
See
numpy.ndarray.nbytes.
- ndim: object
See
numpy.ndarray.ndim.
- real: object
See
numpy.ndarray.real.
- shape: object
See
numpy.ndarray.shape.
- size: object
See
numpy.ndarray.size.
Operators
- __array__(self, dtype: object | None = None, copy: object | None = None) ndarray | object
Allows
array()to be called with the object.
- __hash__()
Return hash(self).
- __imatmul__(self, value: object) object
See
numpy.matmul
- __init__(self, a: ndarray) None
- __init__(self, a: numpy.ndarray[dtype=float64, shape=(*), order='C']) None
- __init__(self, vec: Vector) None
- __init__(self) None
- __init__(self, l: list) None
- __init__(self) None
- __init__(self, arg: AscendingGrid) None
- __init__(self, arg: Vector, /) None
- __rdivmod__(self, value: object) object
See
numpy.divmod
- __rmatmul__(self, value: object) object
See
numpy.matmul
- __rmod__(self, value: object) object
See
numpy.remainder
- __rmul__(self, value: object) object
See
numpy.multiply
- __ror__(self, value: object) object
See
numpy.bitwise_or
- __rsub__(self, value: object) object
See
numpy.subtract