Click or drag to resize

DataTableWrapperToROColumnMatrix(INumericColumn, IAscendingIntegerCollection) Method

Wraps a set of DataColumns into a readonly matrix so that the matrix columns corresponds to the DataColumns.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IROMatrix<double> ToROColumnMatrix(
	INumericColumn[] collection,
	IAscendingIntegerCollection selectedRows
)

Parameters

collection  INumericColumn
Collection of DataColumns.
selectedRows  IAscendingIntegerCollection
The set of rows that are part of the matrix. This collection will be cloned here, i.e. you can subsequently change it without affecting this wrapper.

Return Value

IROMatrixDouble
The wrapping read only matrix.
See Also