Click or drag to resize

WaveletRicker Class

Ricker wavelet function, also known as the "Mexican hat wavelet".
Inheritance Hierarchy
SystemObject
  Altaxo.Science.Spectroscopy.PeakSearchingWaveletRicker

Namespace: Altaxo.Science.Spectroscopy.PeakSearching
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class WaveletRicker : IWaveletForPeakSearching, 
	IEquatable<WaveletRicker>

The WaveletRicker type exposes the following members.

Constructors
 NameDescription
Public methodWaveletRickerInitializes a new instance of the WaveletRicker class
Top
Methods
 NameDescription
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetParametersForGaussianPeak Gets the parameters of a Gaussian peak that best fits.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodWaveletFunction Calculates the wavelet function value.
Top
Remarks

It models the function:

C#
A * (1 - (x/w)**2) * exp(-0.5*(x/w)**2),
where A = 2/(sqrt(3*w)*(pi**0.25)).
See Also