Click or drag to resize

DataTableWrapperToRORowMatrix(DataColumnCollection, IAscendingIntegerCollection, IAscendingIntegerCollection) Method

Wraps a set of DataColumns into a readonly matrix so that the matrix rows 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> ToRORowMatrix(
	DataColumnCollection collection,
	IAscendingIntegerCollection selectedColumns,
	IAscendingIntegerCollection selectedRows
)

Parameters

collection  DataColumnCollection
DataColumnCollection from which to select the data columns that are part of the matrix by their indices.
selectedColumns  IAscendingIntegerCollection
The indices of the data columns in the collection that are part of the matrix. You can subsequently change this parameter without affecting this wrapper.
selectedRows  IAscendingIntegerCollection
Selected rows of the data table that participate in the matrix. Remember that this are the columns of the wrapped matrix. This collection will be cloned here, i.e. you can subsequently change it without affecting this wrapper.

Return Value

IROMatrixDouble

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.DataTableWrapper.ToRORowMatrix(Altaxo.Data.DataColumnCollection,Altaxo.Collections.IAscendingIntegerCollection,Altaxo.Collections.IAscendingIntegerCollection)"]

See Also