Click or drag to resize

DataTableToMatrixConverterCheckContentForNaNandInfiniteValues Method

Checks the content of a matrix area of a table for NaN and infinite values. If such values are found, an InvalidOperationException is thrown with a diagnostic message.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void CheckContentForNaNandInfiniteValues(
	DataColumnCollection table,
	IAscendingIntegerCollection participatingRows,
	IAscendingIntegerCollection participatingColumns,
	bool checkForNaN,
	bool checkForInfinity
)

Parameters

table  DataColumnCollection
The table to check.
participatingRows  IAscendingIntegerCollection
The rows participating in the matrix area.
participatingColumns  IAscendingIntegerCollection
The columns participating in the matrix area.
checkForNaN  Boolean
If set to true, this function will check for NaN values.
checkForInfinity  Boolean
If set to true, this function will check for Infinite values.
Exceptions
ExceptionCondition
InvalidOperationExceptionIs thrown if NaN or Infinite values are found in the matrix area.
See Also