IMatrix_DG Interface
All indices in DG Kenel are 0-based
A standalone matrix can be created via IObjectGenerator_DG.Create<IMatrix_DG>() call.
- GetSize
- SetSize
- Get
- Set
- Copy
void GetSize(out int rows, out int columns)
void SetSize(int rows, int columns)
double Get(int row, int column)
void Set(int row, int column, double value)
void Copy(IMatrix_DG matrix)
|