Computes the inverse Fourier transform of the given series.

Namespace: Meta.Numerics.SignalProcessing
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
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
IList<(Of <(<'Complex>)>)>
The series to invert.

Return Value

The inverse discrete Fourier transform of the series.

See Also