Click or drag to resize

NeonCalibrationGetSplineMeasuredWavelengthToWavelengthDifference Method

Creates a spline that maps the measured wavelength to the wavelength difference between the official NIST wavelength and the measured wavelength.

Namespace: Altaxo.Science.Spectroscopy.Raman
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Func<double, double> GetSplineMeasuredWavelengthToWavelengthDifference(
	NeonCalibrationOptions options,
	List<(double NistWL, double MeasWL, double MeasWLStdDev)> PeakMatchings
)

Parameters

options  NeonCalibrationOptions
Calibration options controlling interpolation behavior.
PeakMatchings  ListValueTupleDouble, Double, Double
List of peak match tuples (NistWL, MeasWL, MeasWLStdDev).

Return Value

FuncDouble, Double
A function mapping a NIST wavelength to the difference (NIST - measured).
See Also