#include <mat.h>

Public Member Functions | |
| NRMat_from1 (const int n) | |
| NRMat_from1 (const NRMat< T > &rhs) | |
| NRMat_from1 (const int n, const int m) | |
| be able to convert the parent class transparently to this | |
| NRMat_from1 (const T &a, const int n, const int m) | |
| NRMat_from1 (const T *a, const int n, const int m) | |
| const T & | operator() (const int i, const int j) const |
| get the const reference to the element with indices (i,j) | |
| T & | operator() (const int i, const int j) |
| get the reference to the element with indices (i,j) | |
| const T | get_ij (const int i, const int j) const |
| get the copy of the element with indices (i,j) | |
NRMat<T> functionality with indexing from 1 all possible constructors have to be given explicitly, other stuff is inherited with exception of the operator() which differs | const T LA::NRMat_from1< T >::get_ij | ( | const int | i, | |
| const int | j | |||
| ) | const [inline] |
get the copy of the element with indices (i,j)
for a given matrix
, determine the element with indices (i,j)
| [in] | i | row number |
| [in] | j | col number |
Reimplemented from LA::NRMat< T >.
| T& LA::NRMat_from1< T >::operator() | ( | const int | i, | |
| const int | j | |||
| ) | [inline] |
get the reference to the element with indices (i,j)
for a given matrix
, determine the element with indices (i,j)
| [in] | i | row number |
| [in] | j | col number |
Reimplemented from LA::NRMat< T >.
| const T& LA::NRMat_from1< T >::operator() | ( | const int | i, | |
| const int | j | |||
| ) | const [inline] |
get the const reference to the element with indices (i,j)
for a given matrix
, determine the element with indices (i,j)
| [in] | i | row number |
| [in] | j | col number |
Reimplemented from LA::NRMat< T >.