Click or drag to resize

ListOfXAndYColumnTryGetResolvedDataInMatrixForm Method

Tries to get the resolved X and Y data for all curves in matrix form. If successful, returns a tuple containing the X array and the Y matrix. The curves must have the same X array for this to work. The curves are represented by rows in the Y matrix.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public (XAndYColumn[] , double[] , Matrix<double> yMatrix)? TryGetResolvedDataInMatrixForm()

Return Value

NullableValueTupleXAndYColumn, Double, MatrixDouble
If successful, a tuple containing the curves that contribute to the matrix, the common x-data of all curves, and the yMatrix containing a row for each curve. If not successful, the return value is null.
See Also