Constructs a new matrix from the specified vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> FromRows<T>(
params Vector<T>[] rows
)
Public Shared Function FromRows(Of T) (
ParamArray rows As Vector(Of T)()
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ FromRows(
... array<Vector<T>^>^ rows
)
static member FromRows :
rows : Vector<'T>[] -> Matrix<'T>
Parameters
- rows
- Type: Extreme.MathematicsVectorT
A parameter array of vectors of
T.
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
MatrixTA matrix constructed by joining the vectors in
rows.
All vectors must have the same length.
Reference