ConstantVector<T>.Reshape Method
Returns a matrix that contains the vector elements columnwise.
DefinitionPermalink
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
A matrix that uses the same storage as the vector.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public override Matrix<T> Reshape(
int rowCount,
int columnCount
)
ParametersPermalink
- rowCount Int32
- The number of rows of the matrix.
- columnCount Int32
- The number of columns of the matrix.
Return ValuePermalink
Matrix<T>A matrix that uses the same storage as the vector.
ExceptionsPermalink
Invalid | The vector cannot be reshaped. |
Dimension | The total number of elements in the new matrix does not equal the number of elements in this vector. |