Click or drag to resize

DataTableMatrixProxyBaseGetWrappers Method

Gets wrappers for the matrix and for the row and column header values. The row and column header values are transformed (for instance to logical values and selected by means of corresponding functions.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void GetWrappers(
	Func<AltaxoVariant, double> TransformRowHeaderValues,
	Func<double, bool> SelectTransformedRowHeaderValues,
	Func<AltaxoVariant, double> TransformColumnHeaderValues,
	Func<double, bool> SelectTransformedColumnHeaderValues,
	out IROMatrix<double> resultantMatrix,
	out IReadOnlyList<double> resultantTransformedRowHeaderValues,
	out IReadOnlyList<double> resultantTransformedColumnHeaderValues
)

Parameters

TransformRowHeaderValues  FuncAltaxoVariant, Double
The function to transform row header values.
SelectTransformedRowHeaderValues  FuncDouble, Boolean
The function to select the transformed row header values.
TransformColumnHeaderValues  FuncAltaxoVariant, Double
The function to transform column header values.
SelectTransformedColumnHeaderValues  FuncDouble, Boolean
The function to select the transformed column header values.
resultantMatrix  IROMatrixDouble
The resultant matrix.
resultantTransformedRowHeaderValues  IReadOnlyListDouble
The resultant transformed row header values.
resultantTransformedColumnHeaderValues  IReadOnlyListDouble
The resultant transformed column header values.
See Also