Click or drag to resize

ListOfXAndYColumnGetResolvedData Method

Returns an enumerable collection of resolved X and Y data arrays for each curve that contains valid data.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public IEnumerable<(XAndYColumn xyColumns, double[] , double[] , int rowCount)> GetResolvedData()

Return Value

IEnumerableValueTupleXAndYColumn, Double, Double, Int32
An enumerable sequence of tuples, each containing the curve's column information and its corresponding X and Y data arrays. Only curves with non-null X and Y arrays and at least one data point are included.
Remarks
Use this method to iterate over all curves with available resolved data. Curves without valid data are automatically excluded from the results.
See Also