Creates a new matrix with the desired size and copies this matrix to it.
Values which no longer exist in the new matrix are ignored, new values are set to zero.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Matrix<T> Resize(
int rowCount,
int columnCount
)
Parameters
- rowCount Int32
- The number of rows of the new matrix.
- columnCount Int32
- The number of columns of the new matrix.
Return Value
MatrixTA new matrix with the desired rows and columns.
See Also