DataTableWrapperGetValidNumericRows(DataColumnCollection, IAscendingIntegerCollection, 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.LinearAlgebraAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool[] GetValidNumericRows(
DataColumnCollection table,
IAscendingIntegerCollection selectedCols,
int rowCount
)
Parameters
- table DataColumnCollection
- The data column collection.
- selectedCols IAscendingIntegerCollection
- The indizes of the columns in question into the collection.
- rowCount Int32
- The minimum row count of all the selected columns.
Return Value
BooleanA 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