Click or drag to resize

MatrixTResize Method

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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

MatrixT
A new matrix with the desired rows and columns.
See Also