#include <itkMatrix.h>
Definition at line 39 of file itkMatrix.h.
Public Types | |
| typedef T | ComponentType |
| typedef vnl_matrix_fixed< T, NRows, NColumns > | InternalMatrixType |
| typedef Matrix | Self |
| typedef T | ValueType |
Public Member Functions | |
| void | Fill (const T &value) |
| T & | Get (unsigned int row, unsigned int col) |
| vnl_matrix_fixed< T, NColumns, NRows > | GetInverse (void) const |
| vnl_matrix_fixed< T, NColumns, NRows > | GetTranspose (void) const |
| const InternalMatrixType & | GetVnlMatrix (void) const |
| InternalMatrixType & | GetVnlMatrix (void) |
| Matrix (const Self &matrix) | |
| Matrix () | |
| vnl_vector< T > | operator * (const vnl_vector< T > &matrix) const |
| vnl_matrix< T > | operator * (const vnl_matrix< T > &matrix) const |
| Self | operator * (const Self &matrix) const |
| CovariantVector< T, NRows > | operator * (const CovariantVector< T, NColumns > &vector) const |
| Point< T, NRows > | operator * (const Point< T, NColumns > &vector) const |
| Vector< T, NRows > | operator * (const Vector< T, NColumns > &vector) const |
| void | operator *= (const T &value) |
| void | operator *= (const vnl_matrix< T > &matrix) |
| void | operator *= (const Self &matrix) |
| const T & | operator() (unsigned int row, unsigned int col) const |
| T & | operator() (unsigned int row, unsigned int col) |
| void | operator/= (const T &value) |
| const Self & | operator= (const Self &matrix) |
| const Self & | operator= (const vnl_matrix< T > &matrix) |
| const T * | operator[] (unsigned int i) const |
| T * | operator[] (unsigned int i) |
| void | Set (unsigned int row, unsigned int col, T value) |
| void | SetIdentity (void) |
| itkStaticConstMacro (ColumnDimensions, unsigned int, NColumns) | |
| itkStaticConstMacro (RowDimensions, unsigned int, NRows) | |
| Self | operator * (const T &value) |
| bool | operator!= (const Self &matrix) |
| bool | operator== (const Self &matrix) |
| Self | operator+ (const Self &matrix) const |
| const Self & | operator+= (const Self &matrix) |
| Self | operator- (const Self &matrix) const |
| const Self & | operator-= (const Self &matrix) |
| Self | operator/ (const T &value) |
| typedef T itk::Matrix< T, NRows, NColumns >::ComponentType |
Definition at line 46 of file itkMatrix.h.
| typedef vnl_matrix_fixed<T,NRows,NColumns> itk::Matrix< T, NRows, NColumns >::InternalMatrixType |
Internal matrix type
Definition at line 54 of file itkMatrix.h.
| typedef Matrix itk::Matrix< T, NRows, NColumns >::Self |
Standard class typedefs.
Definition at line 42 of file itkMatrix.h.
| typedef T itk::Matrix< T, NRows, NColumns >::ValueType |
Component value type
Definition at line 45 of file itkMatrix.h.
| itk::Matrix< T, NRows, NColumns >::Matrix | ( | ) | [inline] |
Default constructor.
Definition at line 164 of file itkMatrix.h.
| itk::Matrix< T, NRows, NColumns >::Matrix | ( | const Self & | matrix | ) | [inline] |
Copy constructor.
Definition at line 167 of file itkMatrix.h.
| void itk::Matrix< T, NRows, NColumns >::Fill | ( | const T & | value | ) | [inline] |
Fill the matrix with a value.
Definition at line 143 of file itkMatrix.h.
| T& itk::Matrix< T, NRows, NColumns >::Get | ( | unsigned int | row, | |
| unsigned int | col | |||
| ) | [inline] |
Definition at line 170 of file itkMatrix.h.
| vnl_matrix_fixed<T,NColumns,NRows> itk::Matrix< T, NRows, NColumns >::GetInverse | ( | void | ) | const [inline] |
Return the inverse matrix.
| vnl_matrix_fixed<T,NColumns,NRows> itk::Matrix< T, NRows, NColumns >::GetTranspose | ( | void | ) | const [inline] |
Return the transposed matrix.
| const InternalMatrixType& itk::Matrix< T, NRows, NColumns >::GetVnlMatrix | ( | void | ) | const [inline] |
Return the matrix.
Definition at line 135 of file itkMatrix.h.
| InternalMatrixType& itk::Matrix< T, NRows, NColumns >::GetVnlMatrix | ( | void | ) | [inline] |
| itk::Matrix< T, NRows, NColumns >::itkStaticConstMacro | ( | ColumnDimensions | , | |
| unsigned | int, | |||
| NColumns | ||||
| ) |
| itk::Matrix< T, NRows, NColumns >::itkStaticConstMacro | ( | RowDimensions | , | |
| unsigned | int, | |||
| NRows | ||||
| ) |
Number Of Columns and Rows.
| Self itk::Matrix< T, NRows, NColumns >::operator * | ( | const T & | value | ) | [inline] |
Matrix by scalar multiplication.
Definition at line 96 of file itkMatrix.h.
| vnl_vector<T> itk::Matrix< T, NRows, NColumns >::operator * | ( | const vnl_vector< T > & | matrix | ) | const |
Matrix by vnl_vector multiplication.
| vnl_matrix<T> itk::Matrix< T, NRows, NColumns >::operator * | ( | const vnl_matrix< T > & | matrix | ) | const |
Matrix by vnl_matrix multiplication.
| Self itk::Matrix< T, NRows, NColumns >::operator * | ( | const Self & | matrix | ) | const |
| CovariantVector<T,NRows> itk::Matrix< T, NRows, NColumns >::operator * | ( | const CovariantVector< T, NColumns > & | vector | ) | const |
Matrix by CovariantVector multiplication.
| Point<T,NRows> itk::Matrix< T, NRows, NColumns >::operator * | ( | const Point< T, NColumns > & | vector | ) | const |
| Vector<T,NRows> itk::Matrix< T, NRows, NColumns >::operator * | ( | const Vector< T, NColumns > & | vector | ) | const |
| void itk::Matrix< T, NRows, NColumns >::operator *= | ( | const T & | value | ) | [inline] |
Matrix by scalar multiplication.
Definition at line 92 of file itkMatrix.h.
| void itk::Matrix< T, NRows, NColumns >::operator *= | ( | const vnl_matrix< T > & | matrix | ) |
Matrix by vnl_matrix multiplication.
| void itk::Matrix< T, NRows, NColumns >::operator *= | ( | const Self & | matrix | ) |
| bool itk::Matrix< T, NRows, NColumns >::operator!= | ( | const Self & | matrix | ) | [inline] |
| const T& itk::Matrix< T, NRows, NColumns >::operator() | ( | unsigned int | row, | |
| unsigned int | col | |||
| ) | const [inline] |
Return an element of the matrix.
Definition at line 119 of file itkMatrix.h.
| T& itk::Matrix< T, NRows, NColumns >::operator() | ( | unsigned int | row, | |
| unsigned int | col | |||
| ) | [inline] |
Return an element of the matrix.
Definition at line 115 of file itkMatrix.h.
| Self itk::Matrix< T, NRows, NColumns >::operator+ | ( | const Self & | matrix | ) | const |
Matrix addition.
| const Self& itk::Matrix< T, NRows, NColumns >::operator+= | ( | const Self & | matrix | ) |
Matrix addition.
| Self itk::Matrix< T, NRows, NColumns >::operator- | ( | const Self & | matrix | ) | const |
Matrix addition.
| const Self& itk::Matrix< T, NRows, NColumns >::operator-= | ( | const Self & | matrix | ) |
Matrix addition.
| Self itk::Matrix< T, NRows, NColumns >::operator/ | ( | const T & | value | ) | [inline] |
Matrix by scalar division.
Definition at line 107 of file itkMatrix.h.
| void itk::Matrix< T, NRows, NColumns >::operator/= | ( | const T & | value | ) | [inline] |
Matrix by scalar division.
Definition at line 103 of file itkMatrix.h.
| const Self& itk::Matrix< T, NRows, NColumns >::operator= | ( | const Self & | matrix | ) | [inline] |
Assignment operator.
| const Self& itk::Matrix< T, NRows, NColumns >::operator= | ( | const vnl_matrix< T > & | matrix | ) | [inline] |
Assignment operator.
| bool itk::Matrix< T, NRows, NColumns >::operator== | ( | const Self & | matrix | ) | [inline] |
Comparison operators.
| const T* itk::Matrix< T, NRows, NColumns >::operator[] | ( | unsigned int | i | ) | const [inline] |
Return a row of the matrix.
Definition at line 127 of file itkMatrix.h.
| T* itk::Matrix< T, NRows, NColumns >::operator[] | ( | unsigned int | i | ) | [inline] |
Return a row of the matrix.
Definition at line 123 of file itkMatrix.h.
| void itk::Matrix< T, NRows, NColumns >::Set | ( | unsigned int | row, | |
| unsigned int | col, | |||
| T | value | |||
| ) | [inline] |
Definition at line 173 of file itkMatrix.h.
| void itk::Matrix< T, NRows, NColumns >::SetIdentity | ( | void | ) | [inline] |
Set the matrix to identity.
Definition at line 139 of file itkMatrix.h.
1.4.7 written by Dimitri van Heesch,
© 1997-2000