Click or drag to resize

MatrixMathRowToROVectorT(IROMatrixT, Int32) Method

Returns a vector representing a matrix row by providing the matrix and the row number of that matrix that is wrapped.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IReadOnlyList<T> RowToROVector<T>(
	IROMatrix<T> x,
	int row
)
where T : struct, new()

Parameters

x  IROMatrixT
The matrix.
row  Int32
The row number of the matrix that is wrapped to a vector.

Type Parameters

T
The element type of the matrix.

Return Value

IReadOnlyListT
A read-only vector representing the specified row of the matrix.
See Also