Click or drag to resize

DataTableWrapperGetValidNumericRows(IReadableColumn, IAscendingIntegerCollection, IEnumerableInt32, Int32) Method

Determines which of the rows of a set of columns is truly numeric, i.e. all columns in this row contains a value, which is not double.NaN.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool[] GetValidNumericRows(
	IReadableColumn?[] table,
	IAscendingIntegerCollection selectedCols,
	IEnumerable<int> selectedRowIndices,
	int rowCount
)

Parameters

table  IReadableColumn
Array of numeric columns.
selectedCols  IAscendingIntegerCollection
The indizes of the columns in question into the collection.
selectedRowIndices  IEnumerableInt32
The selected data row indices.
rowCount  Int32
The minimum row count of all the selected columns.

Return Value

Boolean
A boolean array. If an element of the array is true at a given index, that row contains valid numeric values in all columns.
See Also