Click or drag to resize

PeakFinderCWTContinuousWaveletTransformation Method

Executes a continuous wavelet transform over the data data.

Namespace: Altaxo.Science.Spectroscopy.PeakSearching
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[,] ContinuousWaveletTransformation(
	double[] data,
	Func<double, double, double> wavelet,
	IEnumerable<double> widths
)

Parameters

data  Double
The data to transform.
wavelet  FuncDouble, Double, Double
The wavelet function. First parameter is the x value of the function, second parameter is the width.
widths  IEnumerableDouble
Enumeration of widths to evaluate. The values should be increasing.

Return Value

Double
A matrix in which each row represents the waveform transformation at a certain width.
See Also