IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
Data Transfer Object (DTO) for matrixs of type IG.Num.Matrix. Used to store, transfer, serialize and deserialize objects of type IMatrix. More...
Public Member Functions | |
MatrixDto () | |
Creates a DTO for storing state of a matrix object of any matrix type. | |
MatrixDto (int rowCnt, int columnCnt) | |
Creates a DTO for storing a matrix object of the Matrix type, with specified dimension. | |
override Matrix | CreateMatrix (int rowCnt, int columnCnt) |
Creates and returns a new matrix of the specified dimension. |
Data Transfer Object (DTO) for matrixs of type IG.Num.Matrix. Used to store, transfer, serialize and deserialize objects of type IMatrix.
$A Igor Aug09;
IG::Lib::MatrixDto::MatrixDto | ( | ) | [inline] |
Creates a DTO for storing state of a matrix object of any matrix type.
IG::Lib::MatrixDto::MatrixDto | ( | int | rowCnt, |
int | columnCnt | ||
) | [inline] |
Creates a DTO for storing a matrix object of the Matrix type, with specified dimension.
rowCnt | First dimension of the matrix (number of rows). |
columnCnt | Second dimension of the matrix (number of columns). |
override Matrix IG::Lib::MatrixDto::CreateMatrix | ( | int | rowCnt, |
int | columnCnt | ||
) | [inline] |
Creates and returns a new matrix of the specified dimension.
rowCnt | First dimension of the matrix (number of rows). |
columnCnt | Second dimension of the matrix (number of columns). |
Reimplemented from IG::Lib::MatrixDtoBase.