Computes the 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[] Transform(
	IList<Complex> values
)
Public Function Transform ( _
	values As IList(Of Complex) _
) As Complex()
public:
array<Complex>^ Transform(
	IList<Complex>^ values
)
member Transform : 
        values : IList<Complex> -> Complex[] 

Parameters

values
IList<(Of <(<'Complex>)>)>
The series to transform.

Return Value

The discrete Fourier transform of the series.

See Also