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.3179.0 (4.8.3179.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 would best fit.
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 The function that calculates the wavelet.
Top
Remarks

It models the function:

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