Click or drag to resize

SNIP_BaseEvaluateBaselineWithLocalHalfWidth Method

Executes the algorithm using a locally calculated half width. This method is specialized for non-uniformly spaced x-values and a half width specified in x-units. The half width in points is calculated individually for each point.

Namespace: Altaxo.Science.Spectroscopy.BaselineEstimation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
protected virtual void EvaluateBaselineWithLocalHalfWidth(
	ReadOnlySpan<double> x,
	double[] srcY,
	double[] tmpY,
	Span<double> result
)

Parameters

x  ReadOnlySpanDouble
The x-values of the spectrum.
srcY  Double
The y-values of the spectrum.
tmpY  Double
A temporary working array of the same length as srcY.
result  SpanDouble
The destination span to which the estimated baseline is written.
See Also