Classes | Functions
Diagview

Classes

class  diagview< eT >
 Class for storing data required to extract and set the diagonals of a matrix. More...
 

Functions

arma_inline eT & diagview< eT >::at (const uword i)
 
arma_inline eT diagview< eT >::at (const uword i) const
 
arma_inline eT & diagview< eT >::at (const uword in_n_row, const uword in_n_col)
 
arma_inline eT diagview< eT >::at (const uword in_n_row, const uword in_n_col) const
 
arma_inline diagview< eT >::diagview (const Mat< eT > &in_m, const uword in_row_offset, const uword in_col_offset, const uword len)
 
arma_inline diagview< eT >::diagview (Mat< eT > &in_m, const uword in_row_offset, const uword in_col_offset, const uword len)
 
static void diagview< eT >::div_inplace (Mat< eT > &out, const diagview &in)
 X /= Y.diag() More...
 
static void diagview< eT >::extract (Mat< eT > &out, const diagview &in)
 extract a diagonal and store it as a column vector More...
 
void diagview< eT >::fill (const eT val)
 
static void diagview< eT >::minus_inplace (Mat< eT > &out, const diagview &in)
 X -= Y.diag() More...
 
void diagview< eT >::ones ()
 
template<typename T1 >
void diagview< eT >::operator%= (const Base< eT, T1 > &x)
 
arma_inline eT & diagview< eT >::operator() (const uword i)
 
arma_inline eT diagview< eT >::operator() (const uword i) const
 
arma_inline eT & diagview< eT >::operator() (const uword in_n_row, const uword in_n_col)
 
arma_inline eT diagview< eT >::operator() (const uword in_n_row, const uword in_n_col) const
 
void diagview< eT >::operator*= (const eT val)
 
void diagview< eT >::operator+= (const eT val)
 
template<typename T1 >
void diagview< eT >::operator+= (const Base< eT, T1 > &x)
 
void diagview< eT >::operator-= (const eT val)
 
template<typename T1 >
void diagview< eT >::operator-= (const Base< eT, T1 > &x)
 
void diagview< eT >::operator/= (const eT val)
 
template<typename T1 >
void diagview< eT >::operator/= (const Base< eT, T1 > &x)
 
void diagview< eT >::operator= (const diagview &x)
 set a diagonal of our matrix using a diagonal from a foreign matrix More...
 
template<typename T1 >
void diagview< eT >::operator= (const Base< eT, T1 > &x)
 set a diagonal of our matrix using data from a foreign object More...
 
arma_inline eT & diagview< eT >::operator[] (const uword i)
 
arma_inline eT diagview< eT >::operator[] (const uword i) const
 
static void diagview< eT >::plus_inplace (Mat< eT > &out, const diagview &in)
 X += Y.diag() More...
 
static void diagview< eT >::schur_inplace (Mat< eT > &out, const diagview &in)
 X %= Y.diag() More...
 
void diagview< eT >::zeros ()
 
 diagview< eT >::~diagview ()
 

Detailed Description

Function Documentation

template<typename eT >
arma_inline eT & diagview< eT >::at ( const uword  i)

Definition at line 619 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT diagview< eT >::at ( const uword  i) const

Definition at line 629 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT & diagview< eT >::at ( const uword  in_n_row,
const uword  in_n_col 
)

Definition at line 663 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT diagview< eT >::at ( const uword  in_n_row,
const uword  in_n_col 
) const

Definition at line 673 of file diagview_meat.hpp.

template<typename eT >
arma_inline diagview< eT >::diagview ( const Mat< eT > &  in_m,
const uword  in_row_offset,
const uword  in_col_offset,
const uword  len 
)
protected

Definition at line 28 of file diagview_meat.hpp.

template<typename eT >
arma_inline diagview< eT >::diagview ( Mat< eT > &  in_m,
const uword  in_row_offset,
const uword  in_col_offset,
const uword  len 
)
protected

Definition at line 43 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::div_inplace ( Mat< eT > &  out,
const diagview< eT > &  in 
)
inlinestatic

X /= Y.diag()

Definition at line 564 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::extract ( Mat< eT > &  out,
const diagview< eT > &  in 
)
inlinestatic

extract a diagonal and store it as a column vector

Definition at line 419 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::fill ( const eT  val)
inline

Definition at line 707 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::minus_inplace ( Mat< eT > &  out,
const diagview< eT > &  in 
)
inlinestatic

X -= Y.diag()

Definition at line 492 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::ones ( )
inline

Definition at line 736 of file diagview_meat.hpp.

template<typename eT >
template<typename T1 >
void diagview< eT >::operator%= ( const Base< eT, T1 > &  x)
inline

Definition at line 329 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT & diagview< eT >::operator() ( const uword  i)

Definition at line 639 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT diagview< eT >::operator() ( const uword  i) const

Definition at line 651 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT & diagview< eT >::operator() ( const uword  in_n_row,
const uword  in_n_col 
)

Definition at line 683 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT diagview< eT >::operator() ( const uword  in_n_row,
const uword  in_n_col 
) const

Definition at line 695 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::operator*= ( const eT  val)
inline

Definition at line 150 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::operator+= ( const eT  val)
inline

Definition at line 108 of file diagview_meat.hpp.

template<typename eT >
template<typename T1 >
void diagview< eT >::operator+= ( const Base< eT, T1 > &  x)
inline

Definition at line 239 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::operator-= ( const eT  val)
inline

Definition at line 129 of file diagview_meat.hpp.

template<typename eT >
template<typename T1 >
void diagview< eT >::operator-= ( const Base< eT, T1 > &  x)
inline

Definition at line 284 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::operator/= ( const eT  val)
inline

Definition at line 171 of file diagview_meat.hpp.

template<typename eT >
template<typename T1 >
void diagview< eT >::operator/= ( const Base< eT, T1 > &  x)
inline

Definition at line 374 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::operator= ( const diagview< eT > &  x)
inline

set a diagonal of our matrix using a diagonal from a foreign matrix

Definition at line 60 of file diagview_meat.hpp.

template<typename eT >
template<typename T1 >
void diagview< eT >::operator= ( const Base< eT, T1 > &  x)
inline

set a diagonal of our matrix using data from a foreign object

Definition at line 194 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT & diagview< eT >::operator[] ( const uword  i)

Definition at line 599 of file diagview_meat.hpp.

template<typename eT >
arma_inline eT diagview< eT >::operator[] ( const uword  i) const

Definition at line 609 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::plus_inplace ( Mat< eT > &  out,
const diagview< eT > &  in 
)
inlinestatic

X += Y.diag()

Definition at line 456 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::schur_inplace ( Mat< eT > &  out,
const diagview< eT > &  in 
)
inlinestatic

X %= Y.diag()

Definition at line 528 of file diagview_meat.hpp.

template<typename eT >
void diagview< eT >::zeros ( )
inline

Definition at line 724 of file diagview_meat.hpp.

template<typename eT >
diagview< eT >::~diagview ( )
inline

Definition at line 20 of file diagview_meat.hpp.



armadillo_matrix
Author(s):
autogenerated on Fri Apr 16 2021 02:31:59