ListOfXAndYColumnGetResolvedData Method |
Returns an enumerable collection of resolved X and Y data arrays for each curve that contains valid data.
Namespace: Altaxo.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic IEnumerable<(XAndYColumn xyColumns, double[] , double[] , int rowCount)> GetResolvedData()
Return Value
IEnumerableValueTupleXAndYColumn,
Double,
Double,
Int32An 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.
RemarksUse this method to iterate over all curves with available resolved data. Curves without valid
data are automatically excluded from the results.
See Also