Click or drag to resize

MatrixMathColumnToROVectorT Method

Returns a read-only vector representing a matrix column 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.3179.0 (4.8.3179.0)
Syntax
C#
public static IReadOnlyList<T> ColumnToROVector<T>(
	IROMatrix<T> x,
	int column
)
where T : struct, new()

Parameters

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

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.ColumnToROVector``1(Altaxo.Calc.LinearAlgebra.IROMatrix{``0},System.Int32)"]

Return Value

IReadOnlyListT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.ColumnToROVector``1(Altaxo.Calc.LinearAlgebra.IROMatrix{``0},System.Int32)"]

See Also