Click or drag to resize

PeakFittingInGroupsExecuteForOneGroup Method

Executes peak fitting for peaks in one group

Namespace: Altaxo.Science.Spectroscopy.PeakFitting
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public List<PeakDescription> ExecuteForOneGroup(
	double[] xArray,
	double[] yArray,
	IEnumerable<PeakDescription> peakDescriptions,
	int peakGroupNumber,
	CancellationToken cancellationToken
)

Parameters

xArray  Double
Array of x values.
yArray  Double
Array of y values.
peakDescriptions  IEnumerablePeakDescription
Peak descriptions from the previous peak searching step.
peakGroupNumber  Int32
Current group number.
cancellationToken  CancellationToken
Token to cancel the peak fitting

Return Value

ListPeakDescription
A list of peak descriptions for the fitted peaks.
See Also