Click or drag to resize

RidgeLineGetPointAtMaximalCwtCoefficient Method

Starting at stage 0 (lowest width), searches for a point at which the CWT coefficient has a local maximum. The parameter order determines how many points to the left and right of the candidate maximum are considered.

Namespace: Altaxo.Science.Spectroscopy.PeakSearching
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public (int Row, int Column, double CwtCoefficient) GetPointAtMaximalCwtCoefficient(
	int order
)

Parameters

order  Int32
The order (must be at least 1). Number of points to the left and right of the candidate maximum considered.

Return Value

ValueTupleInt32, Int32, Double
The first local maximum that is found. If none is found, the point at which the CWT coefficient has its global maximum is returned.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionOrder has to be >= 1 - order
See Also