FourierTransformerInverseTransform Method |
Computes the inverse Fourier transform of the given series.
Namespace:
Meta.Numerics.SignalProcessing
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public Complex[] InverseTransform(
IList<Complex> values
)
Public Function InverseTransform (
values As IList(Of Complex)
) As Complex()
public:
array<Complex>^ InverseTransform(
IList<Complex>^ values
)
member InverseTransform :
values : IList<Complex> -> Complex[]
Parameters
- values
- Type: System.Collections.GenericIListComplex
The series to invert.
Return Value
Type:
ComplexThe inverse discrete Fourier transform of the series.
See Also