Fft Base<T> Class
Represents a discrete Fourier Transform implementation.
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public abstract class FftBase<T> : IDisposable
- Inheritance
- Object → FftBase<T>
- Derived
- Implements
- IDisposable
Type Parameters
- T
Remarks
The FftBase<T> class serves as the abstract base class for all implementations of a discrete Fourier Transform. Specialized classes, Fft<T> and Fft2D<T>, have been provided for one and two-dimensional FFT's, respectively. Inherit from these classes to implement a specific one or two-dimensional FFT algorithm.
Constructors
Fft | Constructs a new one-dimensional FFT transform implementation. |
Fft | Constructs a new two-dimensional FFT transform implementation. |
Properties
Backward | Gets or sets the scale factor used in forward transforms. |
Committed | Gets whether the FFT implementation has committed to its current property values. |
Dimension | Gets or sets the dimension of the FFT. |
Domain | Gets or sets the domain of the FFT. |
Forward | Gets or sets the scale factor used in forward transforms. |
InPlace | Gets or sets whether the transform should be performed in place. |
Methods
Commit | Commits the implementation. |
Dispose() | Implements the IDisposable interface. |
Dispose( | Implements the Dispose pattern. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
Get | Serves as the default hash function. (Inherited from Object) |
Get | Returns the length of the transform for the specified dimension. |
Get | Gets the Type of the current instance. (Inherited from Object) |
Memberwise | Creates a shallow copy of the current Object. (Inherited from Object) |
ToString | Returns a string that represents the current object. (Inherited from Object) |