Click or drag to resize

PearsonIVAmplitudeGetHWHM Method

Gets the half width half maximum of a given side of the peak.

Namespace: Altaxo.Calc.FitFunctions.Peaks
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double GetHWHM(
	double w,
	double m,
	double v,
	bool rightSide
)

Parameters

w  Double
The width parameter.
m  Double
The m parameter.
v  Double
The v parameter.
rightSide  Boolean
If set to true, the HWHM of the right side of the peak is determined; otherwise, the HWMH of the left side is determined.

Return Value

Double
The half width half maximum of the given side of the peak. The returned value is always positive.
Remarks
Newton-Raphson iteration is used to calculate HWMH, because a analytical formula is not available.
See Also