XYZColumnPlotDataTryGetMesh Method |
Tries to convert the plot data into a regular mesh.
Namespace: Altaxo.Graph.Plot.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic (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,
MatrixDoubleA tuple indicating success together with the generated mesh data.
See Also