Xmipp  v3.23.11-Nereus
Public Member Functions | List of all members
cif::MatrixExpression< M > Class Template Reference

Public Member Functions

uint32_t dim_m () const
 
uint32_t dim_n () const
 
double & operator() (uint32_t i, uint32_t j)
 
double operator() (uint32_t i, uint32_t j) const
 

Detailed Description

template<typename M>
class cif::MatrixExpression< M >

Definition at line 40 of file point.cpp.

Member Function Documentation

◆ dim_m()

template<typename M>
uint32_t cif::MatrixExpression< M >::dim_m ( ) const
inline

Definition at line 43 of file point.cpp.

43 { return static_cast<const M &>(*this).dim_m(); }

◆ dim_n()

template<typename M>
uint32_t cif::MatrixExpression< M >::dim_n ( ) const
inline

Definition at line 44 of file point.cpp.

44 { return static_cast<const M &>(*this).dim_n(); }

◆ operator()() [1/2]

template<typename M>
double& cif::MatrixExpression< M >::operator() ( uint32_t  i,
uint32_t  j 
)
inline

Definition at line 46 of file point.cpp.

47  {
48  return static_cast<M &>(*this).operator()(i, j);
49  }
#define i
#define j

◆ operator()() [2/2]

template<typename M>
double cif::MatrixExpression< M >::operator() ( uint32_t  i,
uint32_t  j 
) const
inline

Definition at line 51 of file point.cpp.

52  {
53  return static_cast<const M &>(*this).operator()(i, j);
54  }
#define i
#define j

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