ARTS
2.2.66
|
#include <matpackIII.h>
Public Member Functions | |
Tensor3 () | |
Default constructor. More... | |
Tensor3 (Index p, Index r, Index c) | |
Constructor setting size. More... | |
Tensor3 (Index p, Index r, Index c, Numeric fill) | |
Constructor setting size and filling with constant value. More... | |
Tensor3 (const ConstTensor3View &v) | |
Copy constructor from Tensor3View. More... | |
Tensor3 (const Tensor3 &v) | |
Copy constructor from Tensor3. More... | |
Tensor3 & | operator= (Tensor3 x) |
Assignment operator from another tensor. More... | |
Tensor3 & | operator= (Numeric x) |
Assignment operator from scalar. More... | |
void | resize (Index p, Index r, Index c) |
Resize function. More... | |
virtual | ~Tensor3 () |
Destructor for Tensor3. More... | |
Public Member Functions inherited from Tensor3View | |
ConstTensor3View | operator() (const Range &p, const Range &r, const Range &c) const |
Const index operator for subrange. More... | |
ConstMatrixView | operator() (const Range &p, const Range &r, Index c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstMatrixView | operator() (const Range &p, Index r, const Range &c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstMatrixView | operator() (Index p, const Range &r, const Range &c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstVectorView | operator() (Index p, Index r, const Range &c) const |
Const index operator returning an object of type ConstVectorView. More... | |
ConstVectorView | operator() (Index p, const Range &r, Index c) const |
Const index operator returning an object of type ConstVectorView. More... | |
ConstVectorView | operator() (const Range &p, Index r, Index c) const |
Const index operator returning an object of type ConstVectorView. More... | |
Numeric | operator() (Index p, Index r, Index c) const |
Plain const index operator. More... | |
Numeric | get (Index p, Index r, Index c) const |
Get element implementation without assertions. More... | |
Tensor3View | operator() (const Range &p, const Range &r, const Range &c) |
Index operator for subrange. More... | |
MatrixView | operator() (const Range &p, const Range &r, Index c) |
Index operator returning an object of type MatrixView. More... | |
MatrixView | operator() (const Range &p, Index r, const Range &c) |
Index operator returning an object of type MatrixView. More... | |
MatrixView | operator() (Index p, const Range &r, const Range &c) |
Index operator returning an object of type MatrixView. More... | |
VectorView | operator() (Index p, Index r, const Range &c) |
Index operator returning an object of type VectorView. More... | |
VectorView | operator() (Index p, const Range &r, Index c) |
Index operator returning an object of type VectorView. More... | |
VectorView | operator() (const Range &p, Index r, Index c) |
Index operator returning an object of type VectorView. More... | |
Numeric & | operator() (Index p, Index r, Index c) |
Plain non-const index operator. More... | |
Numeric & | get (Index p, Index r, Index c) |
Get element implementation without assertions. More... | |
const Numeric * | get_c_array () const |
Conversion to plain C-array. More... | |
Numeric * | get_c_array () |
Conversion to plain C-array. More... | |
ConstIterator3D | begin () const |
Return const iterator to first row. More... | |
ConstIterator3D | end () const |
Return const iterator behind last row. More... | |
Iterator3D | begin () |
Return iterator to first page. More... | |
Iterator3D | end () |
Return iterator behind last page. More... | |
Tensor3View & | operator= (const ConstTensor3View &v) |
Assignment operator. More... | |
Tensor3View & | operator= (const Tensor3View &v) |
Assignment from Tensor3View to Tensor3View. More... | |
Tensor3View & | operator= (const Tensor3 &v) |
Assignment from a Tensor3. More... | |
Tensor3View & | operator= (Numeric x) |
Assigning a scalar to a Tensor3View will set all elements to this value. More... | |
Tensor3View & | operator*= (Numeric x) |
Multiplication by scalar. More... | |
Tensor3View & | operator/= (Numeric x) |
Division by scalar. More... | |
Tensor3View & | operator+= (Numeric x) |
Addition of scalar. More... | |
Tensor3View & | operator-= (Numeric x) |
Subtraction of scalar. More... | |
Tensor3View & | operator*= (const ConstTensor3View &x) |
Element-vise multiplication by another Tensor3. More... | |
Tensor3View & | operator/= (const ConstTensor3View &x) |
Element-vise division by another Tensor3. More... | |
Tensor3View & | operator+= (const ConstTensor3View &x) |
Element-vise addition of another Tensor3. More... | |
Tensor3View & | operator-= (const ConstTensor3View &x) |
Element-vise subtraction of another Tensor3. More... | |
virtual | ~Tensor3View () |
Destructor. More... | |
Tensor3View (const MatrixView &a) | |
Special constructor to make a Tensor3 view of a matrix. More... | |
Public Member Functions inherited from ConstTensor3View | |
Index | npages () const |
Returns the number of pages. More... | |
Index | nrows () const |
Returns the number of rows. More... | |
Index | ncols () const |
Returns the number of columns. More... | |
ConstTensor3View | operator() (const Range &p, const Range &r, const Range &c) const |
Const index operator for subrange. More... | |
ConstMatrixView | operator() (const Range &p, const Range &r, Index c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstMatrixView | operator() (const Range &p, Index r, const Range &c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstMatrixView | operator() (Index p, const Range &r, const Range &c) const |
Const index operator returning an object of type ConstMatrixView. More... | |
ConstVectorView | operator() (Index p, Index r, const Range &c) const |
Const index operator returning an object of type ConstVectorView. More... | |
ConstVectorView | operator() (Index p, const Range &r, Index c) const |
Const index operator returning an object of type ConstVectorView. More... | |
ConstVectorView | operator() (const Range &p, Index r, Index c) const |
Const index operator returning an object of type ConstVectorView. More... | |
Numeric | operator() (Index p, Index r, Index c) const |
Plain const index operator. More... | |
Numeric | get (Index p, Index r, Index c) const |
Get element implementation without assertions. More... | |
ConstIterator3D | begin () const |
Return const iterator to first page. More... | |
ConstIterator3D | end () const |
Return const iterator behind last page. More... | |
virtual | ~ConstTensor3View () |
Destructor. More... | |
ConstTensor3View (const ConstMatrixView &a) | |
Special constructor to make a Tensor3 view of a matrix. More... | |
Friends | |
void | swap (Tensor3 &t1, Tensor3 &t2) |
Swaps two objects. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from Tensor3View | |
Tensor3View () | |
Default constructor. More... | |
Tensor3View (Numeric *data, const Range &p, const Range &r, const Range &c) | |
Explicit constructor. More... | |
Tensor3View (Numeric *data, const Range &pp, const Range &pr, const Range &pc, const Range &np, const Range &nr, const Range &nc) | |
Recursive constructor. More... | |
Protected Member Functions inherited from ConstTensor3View | |
ConstTensor3View () | |
Default constructor. More... | |
ConstTensor3View (Numeric *data, const Range &p, const Range &r, const Range &c) | |
Explicit constructor. More... | |
ConstTensor3View (Numeric *data, const Range &pp, const Range &pr, const Range &pc, const Range &np, const Range &nr, const Range &nc) | |
Recursive constructor. More... | |
Protected Attributes inherited from ConstTensor3View | |
Range | mpr |
The page range of mdata that is actually used. More... | |
Range | mrr |
The row range of mdata that is actually used. More... | |
Range | mcr |
The column range of mdata that is actually used. More... | |
Numeric * | mdata |
Pointer to the plain C array that holds the data. More... | |
The Tensor3 class.
This is a Tensor3View that also allocates storage automatically, and deallocates it when it is destroyed. We take all the functionality from Tensor3View. Additionally defined here are:
Definition at line 348 of file matpackIII.h.
Tensor3::Tensor3 | ( | ) |
Default constructor.
Definition at line 760 of file matpackIII.cc.
Constructor setting size.
This constructor has to set the strides in the page and row ranges correctly!
Definition at line 771 of file matpackIII.cc.
Constructor setting size and filling with constant value.
Definition at line 781 of file matpackIII.cc.
References ConstTensor3View::mdata.
Tensor3::Tensor3 | ( | const ConstTensor3View & | m | ) |
Copy constructor from Tensor3View.
This automatically sets the size and copies the data.
Definition at line 796 of file matpackIII.cc.
References ConstTensor3View::begin(), Tensor3View::begin(), copy(), and ConstTensor3View::end().
Tensor3::Tensor3 | ( | const Tensor3 & | m | ) |
Copy constructor from Tensor3.
This automatically sets the size and copies the data.
Definition at line 807 of file matpackIII.cc.
References Tensor3View::begin(), copy(), and Tensor3View::end().
|
virtual |
Destructor for Tensor3.
This is important, since Tensor3 uses new to allocate storage.
Definition at line 902 of file matpackIII.cc.
References ConstTensor3View::mdata.
Assignment operator from another tensor.
While dimensions of views can not be adjusted, dimensions of tensors can be adjusted. Hence, the behavior of the assignment operator is different.
In this case the size of the target is automatically adjusted. This is important, so that structures containing tensors are copied correctly.
This is a deviation from the old ARTS paradigm that sizes must match exactly before copying!
Note: It is sufficient to have only this one version of the assignment (Tensor = Tensor). It implicitly covers the cases Tensor=TensorView, etc, because there is a default constructor for Tensor from TensorView. (See C++ Primer Plus, page 571ff.)
m | The other tensor to assign to this one. |
Definition at line 845 of file matpackIII.cc.
References swap.
Assignment operator from scalar.
Assignment operators are not inherited.
Definition at line 853 of file matpackIII.cc.
References Tensor3View::begin(), copy(), and Tensor3View::end().
Resize function.
If the size is already correct this function does nothing. All data is lost after resizing! The new tensor is not initialized, so it will contain random values.
Definition at line 862 of file matpackIII.cc.
References ConstTensor3View::mcr, ConstTensor3View::mdata, Range::mextent, ConstTensor3View::mpr, ConstTensor3View::mrr, Range::mstart, and Range::mstride.
Referenced by AtmFieldsCalc(), AtmFieldsCalcExpand1D(), AtmFieldsExpand1D(), AtmFieldsFromCompact(), ext_matInit(), Extract(), get_ppath_ext(), GriddedFieldLatLonRegridHelper(), iy_transmission_mult(), iyInterpCloudboxField2(), jacobianCalcAbsSpeciesPerturbations(), MCGeneral(), MCIPA(), nca_read_from_file(), opt_prop_sptFromData(), opt_prop_sum_propmat_clearsky(), Reduce(), scat_data_arrayFromMeta(), surface_reflectivityFromGriddedField6(), Tensor3AddScalar(), Tensor3Scale(), Tensor3SetConstant(), wind_u_fieldIncludePlanetRotation(), and xml_read_from_stream().