Returns a matrix that contains the same elements
listed columnwise.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Matrix<T> Reshape(
int rowCount,
int columnCount
)
Public Overridable Function Reshape (
rowCount As Integer,
columnCount As Integer
) As Matrix(Of T)
public:
virtual Matrix<T>^ Reshape(
int rowCount,
int columnCount
)
abstract Reshape :
rowCount : int *
columnCount : int -> Matrix<'T>
override Reshape :
rowCount : int *
columnCount : int -> Matrix<'T>
Parameters
- rowCount
- Type: SystemInt32
The number of rows of the new matrix. - columnCount
- Type: SystemInt32
The number of columns of the new matrix.
Return Value
Type:
MatrixTA matrix that uses the same storage as the vector.
Reference