FourierTransformerTransform Method |
Computes the Fourier transform of the given series.
Namespace:
Meta.Numerics.SignalProcessing
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
- Type: System.Collections.GenericIListComplex
The series to transform.
Return Value
Type:
ComplexThe discrete Fourier transform of the series.
See Also