PeakFinderCWTContinuousWaveletTransformation Method |
Executes a continuous wavelet transform over the data data.
Namespace: Altaxo.Science.Spectroscopy.PeakSearchingAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
DoubleA matrix in which each row represents the waveform transformation at a certain width.
See Also