IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
DTO (data transfer object) for matrix interface (IMatrix). More...
Public Member Functions | |
MatrixDtoBase () | |
Creates a DTO for storing state of a matrix object of any matrix type. | |
MatrixDtoBase (int rowCnt, int columnCnt) | |
Creates a DTO for storing a matrix object of any matrix type, with specified dimensions. | |
override IMatrix | CreateMatrix (int rowCnt, int columnCnt) |
Creates and returns a new matrix cast to the interface type IMatrix. |
DTO (data transfer object) for matrix interface (IMatrix).
$A Igor Jun09;
IG::Lib::MatrixDtoBase::MatrixDtoBase | ( | ) | [inline] |
Creates a DTO for storing state of a matrix object of any matrix type.
IG::Lib::MatrixDtoBase::MatrixDtoBase | ( | int | rowCnt, |
int | columnCnt | ||
) | [inline] |
Creates a DTO for storing a matrix object of any matrix type, with specified dimensions.
rowCnt | First dimension of the matrix (number of rows). |
columnCnt | Second dimension of the matrix (number of columns). |
override IMatrix IG::Lib::MatrixDtoBase::CreateMatrix | ( | int | rowCnt, |
int | columnCnt | ||
) | [inline] |
Creates and returns a new matrix cast to the interface type IMatrix.
rowCnt | First dimension of the matrix (number of rows). |
columnCnt | Second dimension of the matrix (number of columns). |
Reimplemented in IG::Lib::MatrixDto.