Vector<T>.Reshape Method

Returns a matrix that contains the vector elements columnwise.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Matrix<T> Reshape(
	int rowCount,
	int columnCount
)

Parameters

rowCount  Int32
The number of rows of the matrix.
columnCount  Int32
The number of columns of the matrix.

Return Value

Matrix<T>
A matrix that uses the same storage as the vector.

Exceptions

InvalidOperationException The vector cannot be reshaped.
DimensionMismatchException The total number of elements in the new matrix does not equal the number of elements in this vector.

See Also