ARTS  2.3.1285(git:92a29ea9-dirty)
ConstComplexMatrixView Class Reference

A constant view of a ComplexMatrix. More...

#include <complex.h>

Inheritance diagram for ConstComplexMatrixView:
ComplexMatrixView ComplexMatrix

Public Types

typedef ConstComplexIterator2D const_iterator
 

Public Member Functions

constexpr ConstComplexMatrixView (const ConstComplexMatrixView &)=default
 
constexpr ConstComplexMatrixView (ConstComplexMatrixView &&)=default
 
ConstComplexMatrixViewoperator= (const ConstComplexMatrixView &)=default
 
ConstComplexMatrixViewoperator= (ConstComplexMatrixView &&)=default
 
bool empty () const
 
Index nrows () const
 
Index ncols () const
 
Complex operator() (Index r, Index c) const
 Plain const index operator. More...
 
Complex get (Index r, Index c) const
 Get element implementation without assertions. More...
 
Numeric get_real (Index r, Index c) const
 Get element implementation without assertions. More...
 
Numeric get_imag (Index r, Index c) const
 Get element implementation without assertions. More...
 
ConstMatrixView real () const
 Get a view of the real part of the matrix. More...
 
ConstMatrixView imag () const
 Get a view of the imaginary part of the matrix. More...
 
Index get_column_extent () const
 Get the extent of the underlying data. More...
 
ConstComplexMatrixView operator() (const Range &r, const Range &c) const
 Returns true if variable size is zero. More...
 
ConstComplexVectorView operator() (const Range &r, Index c) const
 Const index operator returning a column as an object of type C onstComplex*VectorView. More...
 
ConstComplexVectorView operator() (Index r, const Range &c) const
 Const index operator returning a row as an object of type C onstComplex*VectorView. More...
 
ConstComplexIterator2D begin () const
 Return const iterator to first row. More...
 
ConstComplexIterator2D end () const
 Return const iterator behind last row. More...
 
ConstComplexVectorView diagonal () const
 ComplexMatrix diagonal as vector. More...
 
virtual ~ConstComplexMatrixView ()=default
 Destructor. More...
 

Protected Member Functions

 ConstComplexMatrixView ()=default
 
 ConstComplexMatrixView (Complex *data, const Range &r, const Range &c)
 Explicit constructor. More...
 
 ConstComplexMatrixView (Complex *data, const Range &pr, const Range &pc, const Range &nr, const Range &nc)
 Recursive constructor. More...
 

Protected Attributes

Range mrr {0, 0, 1}
 The row range of mdata that is actually used. More...
 
Range mcr {0, 0, 1}
 The column range of mdata that is actually used. More...
 
Complexmdata {nullptr}
 Pointer to the plain C array that holds the data. More...
 

Friends

class ComplexMatrixView
 
class ConstComplexVectorView
 
ConstComplexMatrixView transpose (ConstComplexMatrixView m)
 Const version of transpose. More...
 
void mult (ComplexVectorView, const ConstComplexMatrixView &, const ConstComplexVectorView &)
 Matrix-Vector Multiplication. More...
 
void mult (ComplexMatrixView, const ConstComplexMatrixView &, const ConstComplexMatrixView &)
 Matrix-Matrix Multiplication. More...
 
void mult (ComplexMatrixView, const ConstMatrixView &, const ConstComplexMatrixView &)
 
void mult (ComplexMatrixView, const ConstComplexMatrixView &, const ConstMatrixView &)
 
ComplexConstMatrixViewMap MapToEigen (const ConstComplexMatrixView &)
 
ComplexMatrixViewMap MapToEigen (ComplexMatrixView &)
 

Detailed Description

A constant view of a ComplexMatrix.

This, together with the derived class Complex*MatrixView, contains the * main implementation of a ComplexMatrix. It defines the concepts of ComplexMatrixView. Plus additionally the recursive subrange operator, which makes it possible to create a ComplexMatrixView from a subrange of a ComplexMatrixView.

The class ComplexMatrix is just a special case of a ComplexMatrixView which also allocates storage.

Definition at line 618 of file complex.h.

Member Typedef Documentation

◆ const_iterator

Constructor & Destructor Documentation

◆ ConstComplexMatrixView() [1/5]

constexpr ConstComplexMatrixView::ConstComplexMatrixView ( const ConstComplexMatrixView )
default

◆ ConstComplexMatrixView() [2/5]

constexpr ConstComplexMatrixView::ConstComplexMatrixView ( ConstComplexMatrixView &&  )
default

◆ ~ConstComplexMatrixView()

virtual ConstComplexMatrixView::~ConstComplexMatrixView ( )
virtualdefault

Destructor.

◆ ConstComplexMatrixView() [3/5]

ConstComplexMatrixView::ConstComplexMatrixView ( )
protecteddefault

Referenced by transpose().

◆ ConstComplexMatrixView() [4/5]

ConstComplexMatrixView::ConstComplexMatrixView ( Complex data,
const Range rr,
const Range cr 
)
protected

Explicit constructor.

This one is used by Matrix to initialize its own MatrixView part. The row range rr must have a stride to account for the length of one row.

Definition at line 829 of file complex.cc.

◆ ConstComplexMatrixView() [5/5]

ConstComplexMatrixView::ConstComplexMatrixView ( Complex data,
const Range pr,
const Range pc,
const Range nr,
const Range nc 
)
protected

Recursive constructor.

This is used to construct SubMatrices from SubMatrices. That means that the new ranges have to be interpreted relative to the original ranges.

The new ranges may contain -1 for the extent which acts as a joker. However, the used Range constructor converts this to an explicit range, consistent with the original Range.

Parameters
*dataThe actual data.
prPrevious range.
pcPrevious range.
nrNew Range.
ncNew Range.

Definition at line 850 of file complex.cc.

Member Function Documentation

◆ begin()

◆ diagonal()

ConstComplexVectorView ConstComplexMatrixView::diagonal ( ) const

ComplexMatrix diagonal as vector.

R eturns a ConstComplex*MatrixView on the diagonal entries of the matrix. For a given (n,m) matrix M the diagonal vector v is the vector of length min{n,m} with entries

 v[i] = M(i,i)
Returns
The diagonal vector v.

Definition at line 820 of file complex.cc.

References ConstComplexVectorView::ConstComplexVectorView(), ConstComplexVectorView::mdata, min, and n.

◆ empty()

bool ConstComplexMatrixView::empty ( ) const
inline

Definition at line 629 of file complex.h.

◆ end()

◆ get()

Complex ConstComplexMatrixView::get ( Index  r,
Index  c 
) const
inline

Get element implementation without assertions.

Definition at line 645 of file complex.h.

◆ get_column_extent()

Index ConstComplexMatrixView::get_column_extent ( ) const
inline

Get the extent of the underlying data.

Definition at line 665 of file complex.h.

Referenced by diagonalize().

◆ get_imag()

Numeric ConstComplexMatrixView::get_imag ( Index  r,
Index  c 
) const
inline

Get element implementation without assertions.

Definition at line 654 of file complex.h.

◆ get_real()

Numeric ConstComplexMatrixView::get_real ( Index  r,
Index  c 
) const
inline

Get element implementation without assertions.

Definition at line 651 of file complex.h.

◆ imag()

ConstMatrixView ConstComplexMatrixView::imag ( ) const
inline

Get a view of the imaginary part of the matrix.

Definition at line 661 of file complex.h.

Referenced by get_maximum_error().

◆ ncols()

◆ nrows()

◆ operator()() [1/4]

Complex ConstComplexMatrixView::operator() ( Index  r,
Index  c 
) const
inline

Plain const index operator.

Definition at line 635 of file complex.h.

◆ operator()() [2/4]

ConstComplexMatrixView ConstComplexMatrixView::operator() ( const Range r,
const Range c 
) const

Returns true if variable size is zero.

Returns the number of rows. Returns the number of columns. Const index operator for subrange. We have to also account for the case, that *this is already a subrange of a Matrix. This allows correct recursive behavior.

Definition at line 764 of file complex.cc.

◆ operator()() [3/4]

ConstComplexVectorView ConstComplexMatrixView::operator() ( const Range r,
Index  c 
) const

Const index operator returning a column as an object of type C onstComplex*VectorView.

Parameters
rA range of rows.
cIndex of selected column

Definition at line 774 of file complex.cc.

◆ operator()() [4/4]

ConstComplexVectorView ConstComplexMatrixView::operator() ( Index  r,
const Range c 
) const

Const index operator returning a row as an object of type C onstComplex*VectorView.

Parameters
rIndex of selected row.
cRange of columns

Definition at line 788 of file complex.cc.

◆ operator=() [1/2]

ConstComplexMatrixView& ConstComplexMatrixView::operator= ( const ConstComplexMatrixView )
default

◆ operator=() [2/2]

ConstComplexMatrixView& ConstComplexMatrixView::operator= ( ConstComplexMatrixView &&  )
default

◆ real()

ConstMatrixView ConstComplexMatrixView::real ( ) const
inline

Get a view of the real part of the matrix.

Definition at line 657 of file complex.h.

Referenced by get_maximum_error().

Friends And Related Function Documentation

◆ ComplexMatrixView

friend class ComplexMatrixView
friend

Definition at line 682 of file complex.h.

◆ ConstComplexVectorView

friend class ConstComplexVectorView
friend

Definition at line 683 of file complex.h.

◆ MapToEigen [1/2]

ComplexConstMatrixViewMap MapToEigen ( const ConstComplexMatrixView )
friend

Definition at line 1655 of file complex.cc.

Referenced by MapToEigenRow(), and mult().

◆ MapToEigen [2/2]

ComplexMatrixViewMap MapToEigen ( ComplexMatrixView )
friend

Definition at line 1685 of file complex.cc.

◆ mult [1/4]

void mult ( ComplexVectorView  ,
const ConstComplexMatrixView ,
const ConstComplexVectorView  
)
friend

Matrix-Vector Multiplication.

Uses the Eigen library. Be carful to test the size of your input beforehand.

For left-hand multiplication, please use pure matrix-mult.

Parameters
[out]yThe length-m ComplexVectorView where the result is stored.
[in]MReference to the m-times-n Const{Complex,}MatrixView holding the matrix M.
[in]xReference to the length-n Const{Complex,}VectorView holding the vector x.

Definition at line 1579 of file complex.cc.

◆ mult [2/4]

void mult ( ComplexMatrixView  ,
const ConstComplexMatrixView ,
const ConstComplexMatrixView  
)
friend

Matrix-Matrix Multiplication.

Uses the Eigen library. Be carful to test the size of your input beforehand. Note that to keep speed, the inputs should be different variables. There is memory duplication if this is not the case. Note that it is mdata that is checked, so even if the matrices are at different parts of a tensor, there is still a slowdown

Parameters
[in,out]AThe matrix A, that will hold the result of the multiplication.
[in]BThe matrix B
[in]CThe matrix C

Definition at line 1604 of file complex.cc.

◆ mult [3/4]

void mult ( ComplexMatrixView  ,
const ConstMatrixView ,
const ConstComplexMatrixView  
)
friend

Definition at line 1630 of file complex.cc.

◆ mult [4/4]

void mult ( ComplexMatrixView  ,
const ConstComplexMatrixView ,
const ConstMatrixView  
)
friend

Definition at line 1617 of file complex.cc.

◆ transpose

Const version of transpose.

Definition at line 1509 of file complex.cc.

Member Data Documentation

◆ mcr

Range ConstComplexMatrixView::mcr {0, 0, 1}
protected

◆ mdata

Complex* ConstComplexMatrixView::mdata {nullptr}
protected

◆ mrr

Range ConstComplexMatrixView::mrr {0, 0, 1}
protected

The documentation for this class was generated from the following files: