#include <Wm4GMatrix.h>
Public Member Functions | |
GVector< Real > | GetColumn (int iCol) const |
void | GetColumnMajor (Real *afCMajor) const |
int | GetColumns () const |
bool | GetInverse (GMatrix< Real > &rkInverse) const |
int | GetQuantity () const |
GVector< Real > | GetRow (int iRow) const |
int | GetRows () const |
void | GetSize (int &riRows, int &riCols) const |
GMatrix (const GMatrix &rkM) | |
GMatrix (int iRows, int iCols, const Real **aafEntry) | |
GMatrix (int iRows, int iCols, const Real *afData) | |
GMatrix (int iRows=0, int iCols=0) | |
operator const Real * () const | |
operator Real * () | |
bool | operator!= (const GMatrix &rkM) const |
Real & | operator() (int iRow, int iCol) |
Real | operator() (int iRow, int iCol) const |
GVector< Real > | operator* (const GVector< Real > &rkV) const |
GMatrix | operator* (Real fScalar) const |
GMatrix | operator* (const GMatrix &rkM) const |
GMatrix & | operator*= (Real fScalar) |
GMatrix | operator+ (const GMatrix &rkM) const |
GMatrix & | operator+= (const GMatrix &rkM) |
GMatrix | operator- () const |
GMatrix | operator- (const GMatrix &rkM) const |
GMatrix & | operator-= (const GMatrix &rkM) |
GMatrix | operator/ (Real fScalar) const |
GMatrix & | operator/= (Real fScalar) |
bool | operator< (const GMatrix &rkM) const |
bool | operator<= (const GMatrix &rkM) const |
GMatrix & | operator= (const GMatrix &rkM) |
bool | operator== (const GMatrix &rkM) const |
bool | operator> (const GMatrix &rkM) const |
bool | operator>= (const GMatrix &rkM) const |
Real * | operator[] (int iRow) |
const Real * | operator[] (int iRow) const |
Real | QForm (const GVector< Real > &rkU, const GVector< Real > &rkV) const |
void | SetColumn (int iCol, const GVector< Real > &rkV) |
void | SetMatrix (int iRows, int iCols, const Real **aafMatrix) |
void | SetMatrix (int iRows, int iCols, const Real *afEntry) |
void | SetRow (int iRow, const GVector< Real > &rkV) |
void | SetSize (int iRows, int iCols) |
void | SwapRows (int iRow0, int iRow1) |
GMatrix | TimesTranspose (const GMatrix &rkM) const |
GMatrix | Transpose () const |
GMatrix | TransposeTimes (const GMatrix &rkM) const |
~GMatrix () | |
Protected Member Functions | |
void | Allocate (bool bSetToZero) |
int | CompareArrays (const GMatrix &rkM) const |
void | Deallocate () |
Protected Attributes | |
Real ** | m_aafEntry |
Real * | m_afData |
int | m_iCols |
int | m_iQuantity |
int | m_iRows |
Definition at line 40 of file Wm4GMatrix.h.
Wm4::GMatrix< Real >::GMatrix | ( | int | iRows = 0 , |
|
int | iCols = 0 | |||
) | [inline] |
Definition at line 21 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::SetSize().
Wm4::GMatrix< Real >::GMatrix | ( | int | iRows, | |
int | iCols, | |||
const Real * | afData | |||
) | [inline] |
Definition at line 29 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::SetMatrix().
Wm4::GMatrix< Real >::GMatrix | ( | int | iRows, | |
int | iCols, | |||
const Real ** | aafEntry | |||
) | [inline] |
Definition at line 37 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::SetMatrix().
Wm4::GMatrix< Real >::GMatrix | ( | const GMatrix< Real > & | rkM | ) | [inline] |
Definition at line 45 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
Wm4::GMatrix< Real >::~GMatrix | ( | ) | [inline] |
Definition at line 56 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::Deallocate().
void Wm4::GMatrix< Real >::Allocate | ( | bool | bSetToZero | ) | [inline, protected] |
Definition at line 62 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, Wm4::GMatrix< Real >::m_iRows, and WM4_NEW.
Referenced by Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::SetMatrix(), and Wm4::GMatrix< Real >::SetSize().
int Wm4::GMatrix< Real >::CompareArrays | ( | const GMatrix< Real > & | rkM | ) | const [inline, protected] |
Definition at line 321 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::m_iQuantity.
Referenced by Wm4::GMatrix< Real >::operator!=(), Wm4::GMatrix< Real >::operator<(), Wm4::GMatrix< Real >::operator<=(), Wm4::GMatrix< Real >::operator==(), Wm4::GMatrix< Real >::operator>(), and Wm4::GMatrix< Real >::operator>=().
void Wm4::GMatrix< Real >::Deallocate | ( | ) | [inline, protected] |
Definition at line 80 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, and WM4_DELETE.
Referenced by Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::SetMatrix(), Wm4::GMatrix< Real >::SetSize(), and Wm4::GMatrix< Real >::~GMatrix().
GVector< Real > Wm4::GMatrix< Real >::GetColumn | ( | int | iCol | ) | const [inline] |
Definition at line 213 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
void Wm4::GMatrix< Real >::GetColumnMajor | ( | Real * | afCMajor | ) | const [inline] |
Definition at line 276 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
int Wm4::GMatrix< Real >::GetColumns | ( | ) | const [inline] |
Definition at line 121 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_iCols.
Referenced by Wm4::Eigen< Real >::Eigen(), Wm4::GMatrix< Real >::GetInverse(), Wm4::LinearSystem< Real >::Inverse(), Wm4::operator*(), Wm4::LinearSystem< Real >::Solve(), and Wm4::LinearSystem< Real >::SolveSymmetricCG().
bool Wm4::GMatrix< Real >::GetInverse | ( | GMatrix< Real > & | rkInverse | ) | const [inline] |
Definition at line 613 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::GetColumns(), Wm4::GMatrix< Real >::GetRows(), Wm4::GMatrix< Real >::SwapRows(), WM4_DELETE, and WM4_NEW.
int Wm4::GMatrix< Real >::GetQuantity | ( | ) | const [inline] |
Definition at line 127 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_iQuantity.
Referenced by Wm4::operator*().
GVector< Real > Wm4::GMatrix< Real >::GetRow | ( | int | iRow | ) | const [inline] |
Definition at line 191 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
int Wm4::GMatrix< Real >::GetRows | ( | ) | const [inline] |
Definition at line 115 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_iRows.
Referenced by Wm4::Eigen< Real >::Eigen(), Wm4::GMatrix< Real >::GetInverse(), Wm4::LinearSystem< Real >::Inverse(), Wm4::operator*(), and Wm4::LinearSystem< Real >::SolveSymmetricCG().
void Wm4::GMatrix< Real >::GetSize | ( | int & | riRows, | |
int & | riCols | |||
) | const [inline] |
Definition at line 108 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
Wm4::GMatrix< Real >::operator const Real * | ( | ) | const [inline] |
Definition at line 133 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData.
Wm4::GMatrix< Real >::operator Real * | ( | ) | [inline] |
Definition at line 139 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData.
bool Wm4::GMatrix< Real >::operator!= | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 333 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
Real & Wm4::GMatrix< Real >::operator() | ( | int | iRow, | |
int | iCol | |||
) | [inline] |
Definition at line 165 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
Real Wm4::GMatrix< Real >::operator() | ( | int | iRow, | |
int | iCol | |||
) | const [inline] |
Definition at line 159 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry.
GVector< Real > Wm4::GMatrix< Real >::operator* | ( | const GVector< Real > & | rkV | ) | const [inline] |
Definition at line 573 of file Wm4GMatrix.inl.
References Wm4::GVector< Real >::GetSize(), Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > Wm4::GMatrix< Real >::operator* | ( | Real | fScalar | ) | const [inline] |
Definition at line 405 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > Wm4::GMatrix< Real >::operator* | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 385 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > & Wm4::GMatrix< Real >::operator*= | ( | Real | fScalar | ) | [inline] |
Definition at line 485 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::m_iQuantity.
GMatrix< Real > Wm4::GMatrix< Real >::operator+ | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 363 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > & Wm4::GMatrix< Real >::operator+= | ( | const GMatrix< Real > & | rkM | ) | [inline] |
Definition at line 465 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::m_iQuantity.
GMatrix< Real > Wm4::GMatrix< Real >::operator- | ( | void | ) | const [inline] |
Definition at line 441 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > Wm4::GMatrix< Real >::operator- | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 374 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > & Wm4::GMatrix< Real >::operator-= | ( | const GMatrix< Real > & | rkM | ) | [inline] |
Definition at line 475 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::m_iQuantity.
GMatrix< Real > Wm4::GMatrix< Real >::operator/ | ( | Real | fScalar | ) | const [inline] |
Definition at line 416 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > & Wm4::GMatrix< Real >::operator/= | ( | Real | fScalar | ) | [inline] |
Definition at line 495 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_afData, and Wm4::GMatrix< Real >::m_iQuantity.
bool Wm4::GMatrix< Real >::operator< | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 339 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
bool Wm4::GMatrix< Real >::operator<= | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 345 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
GMatrix< Real > & Wm4::GMatrix< Real >::operator= | ( | const GMatrix< Real > & | rkM | ) | [inline] |
bool Wm4::GMatrix< Real >::operator== | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 327 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
bool Wm4::GMatrix< Real >::operator> | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 351 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
bool Wm4::GMatrix< Real >::operator>= | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 357 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::CompareArrays().
Real * Wm4::GMatrix< Real >::operator[] | ( | int | iRow | ) | [inline] |
Definition at line 152 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, and Wm4::GMatrix< Real >::m_iRows.
const Real * Wm4::GMatrix< Real >::operator[] | ( | int | iRow | ) | const [inline] |
Definition at line 145 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, and Wm4::GMatrix< Real >::m_iRows.
Real Wm4::GMatrix< Real >::QForm | ( | const GVector< Real > & | rkU, | |
const GVector< Real > & | rkV | |||
) | const [inline] |
Definition at line 605 of file Wm4GMatrix.inl.
References Wm4::GVector< Real >::Dot(), Wm4::GVector< Real >::GetSize(), Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
void Wm4::GMatrix< Real >::SetColumn | ( | int | iCol, | |
const GVector< Real > & | rkV | |||
) | [inline] |
Definition at line 203 of file Wm4GMatrix.inl.
References Wm4::GVector< Real >::GetSize(), Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
void Wm4::GMatrix< Real >::SetMatrix | ( | int | iRows, | |
int | iCols, | |||
const Real ** | aafMatrix | |||
) | [inline] |
void Wm4::GMatrix< Real >::SetMatrix | ( | int | iRows, | |
int | iCols, | |||
const Real * | afEntry | |||
) | [inline] |
Definition at line 225 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::Deallocate(), Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, Wm4::GMatrix< Real >::m_iRows, and Wm4::System::Memcpy().
Referenced by Wm4::GMatrix< Real >::GMatrix().
void Wm4::GMatrix< Real >::SetRow | ( | int | iRow, | |
const GVector< Real > & | rkV | |||
) | [inline] |
Definition at line 181 of file Wm4GMatrix.inl.
References Wm4::GVector< Real >::GetSize(), Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
void Wm4::GMatrix< Real >::SetSize | ( | int | iRows, | |
int | iCols | |||
) | [inline] |
Definition at line 87 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::Deallocate(), Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_afData, Wm4::GMatrix< Real >::m_iCols, Wm4::GMatrix< Real >::m_iQuantity, and Wm4::GMatrix< Real >::m_iRows.
Referenced by Wm4::GMatrix< Real >::GMatrix().
void Wm4::GMatrix< Real >::SwapRows | ( | int | iRow0, | |
int | iRow1 | |||
) | [inline] |
Definition at line 172 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, and Wm4::GMatrix< Real >::m_iRows.
Referenced by Wm4::GMatrix< Real >::GetInverse(), Wm4::LinearSystem< Real >::Inverse(), and Wm4::LinearSystem< Real >::Solve().
GMatrix< Real > Wm4::GMatrix< Real >::TimesTranspose | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 553 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > Wm4::GMatrix< Real >::Transpose | ( | ) | const [inline] |
Definition at line 519 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
GMatrix< Real > Wm4::GMatrix< Real >::TransposeTimes | ( | const GMatrix< Real > & | rkM | ) | const [inline] |
Definition at line 533 of file Wm4GMatrix.inl.
References Wm4::GMatrix< Real >::m_aafEntry, Wm4::GMatrix< Real >::m_iCols, and Wm4::GMatrix< Real >::m_iRows.
Real** Wm4::GMatrix< Real >::m_aafEntry [protected] |
Definition at line 128 of file Wm4GMatrix.h.
Referenced by Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::Deallocate(), Wm4::GMatrix< Real >::GetColumn(), Wm4::GMatrix< Real >::GetColumnMajor(), Wm4::GMatrix< Real >::GetRow(), Wm4::GMatrix< Real >::GMatrix(), Wm4::GMatrix< Real >::operator()(), Wm4::GMatrix< Real >::operator*(), Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::operator[](), Wm4::GMatrix< Real >::SetColumn(), Wm4::GMatrix< Real >::SetMatrix(), Wm4::GMatrix< Real >::SetRow(), Wm4::GMatrix< Real >::SetSize(), Wm4::GMatrix< Real >::SwapRows(), Wm4::GMatrix< Real >::TimesTranspose(), Wm4::GMatrix< Real >::Transpose(), and Wm4::GMatrix< Real >::TransposeTimes().
Real* Wm4::GMatrix< Real >::m_afData [protected] |
Definition at line 123 of file Wm4GMatrix.h.
Referenced by Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::CompareArrays(), Wm4::GMatrix< Real >::Deallocate(), Wm4::GMatrix< Real >::GMatrix(), Wm4::GMatrix< Real >::operator const Real *(), Wm4::GMatrix< Real >::operator Real *(), Wm4::GMatrix< Real >::operator*(), Wm4::GMatrix< Real >::operator*=(), Wm4::GMatrix< Real >::operator+(), Wm4::GMatrix< Real >::operator+=(), Wm4::GMatrix< Real >::operator-(), Wm4::GMatrix< Real >::operator-=(), Wm4::GMatrix< Real >::operator/(), Wm4::GMatrix< Real >::operator/=(), Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::SetMatrix(), and Wm4::GMatrix< Real >::SetSize().
int Wm4::GMatrix< Real >::m_iCols [protected] |
Definition at line 120 of file Wm4GMatrix.h.
Referenced by Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::GetColumn(), Wm4::GMatrix< Real >::GetColumnMajor(), Wm4::GMatrix< Real >::GetColumns(), Wm4::GMatrix< Real >::GetRow(), Wm4::GMatrix< Real >::GetSize(), Wm4::GMatrix< Real >::GMatrix(), Wm4::GMatrix< Real >::operator()(), Wm4::GMatrix< Real >::operator*(), Wm4::GMatrix< Real >::operator+(), Wm4::GMatrix< Real >::operator-(), Wm4::GMatrix< Real >::operator/(), Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::QForm(), Wm4::GMatrix< Real >::SetColumn(), Wm4::GMatrix< Real >::SetMatrix(), Wm4::GMatrix< Real >::SetRow(), Wm4::GMatrix< Real >::SetSize(), Wm4::GMatrix< Real >::TimesTranspose(), Wm4::GMatrix< Real >::Transpose(), and Wm4::GMatrix< Real >::TransposeTimes().
int Wm4::GMatrix< Real >::m_iQuantity [protected] |
Definition at line 120 of file Wm4GMatrix.h.
Referenced by Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::CompareArrays(), Wm4::GMatrix< Real >::GetQuantity(), Wm4::GMatrix< Real >::GMatrix(), Wm4::GMatrix< Real >::operator*(), Wm4::GMatrix< Real >::operator*=(), Wm4::GMatrix< Real >::operator+(), Wm4::GMatrix< Real >::operator+=(), Wm4::GMatrix< Real >::operator-(), Wm4::GMatrix< Real >::operator-=(), Wm4::GMatrix< Real >::operator/(), Wm4::GMatrix< Real >::operator/=(), Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::SetMatrix(), and Wm4::GMatrix< Real >::SetSize().
int Wm4::GMatrix< Real >::m_iRows [protected] |
Definition at line 120 of file Wm4GMatrix.h.
Referenced by Wm4::GMatrix< Real >::Allocate(), Wm4::GMatrix< Real >::GetColumn(), Wm4::GMatrix< Real >::GetColumnMajor(), Wm4::GMatrix< Real >::GetRow(), Wm4::GMatrix< Real >::GetRows(), Wm4::GMatrix< Real >::GetSize(), Wm4::GMatrix< Real >::GMatrix(), Wm4::GMatrix< Real >::operator()(), Wm4::GMatrix< Real >::operator*(), Wm4::GMatrix< Real >::operator+(), Wm4::GMatrix< Real >::operator-(), Wm4::GMatrix< Real >::operator/(), Wm4::GMatrix< Real >::operator=(), Wm4::GMatrix< Real >::operator[](), Wm4::GMatrix< Real >::QForm(), Wm4::GMatrix< Real >::SetColumn(), Wm4::GMatrix< Real >::SetMatrix(), Wm4::GMatrix< Real >::SetRow(), Wm4::GMatrix< Real >::SetSize(), Wm4::GMatrix< Real >::SwapRows(), Wm4::GMatrix< Real >::TimesTranspose(), Wm4::GMatrix< Real >::Transpose(), and Wm4::GMatrix< Real >::TransposeTimes().