Click or drag to resize

XYZColumnPlotDataTryGetMesh Method

Tries to convert the plot data into a regular mesh.

Namespace: Altaxo.Graph.Plot.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public (bool success, double[] , double[] , Matrix<double> z) TryGetMesh(
	Func<AltaxoVariant, double> xTransformation,
	Func<AltaxoVariant, double> yTransformation,
	Func<AltaxoVariant, double> zTransformation
)

Parameters

xTransformation  FuncAltaxoVariant, Double
The transformation applied to X values.
yTransformation  FuncAltaxoVariant, Double
The transformation applied to Y values.
zTransformation  FuncAltaxoVariant, Double
The transformation applied to Z values.

Return Value

ValueTupleBoolean, Double, Double, MatrixDouble
A tuple indicating success together with the generated mesh data.
See Also