Compute the Fourier coefficients of a complex periodic sequence.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Complex[] Forward(
	Complex[] seq
)
Visual Basic (Declaration)
Public Function Forward ( _
	seq As Complex() _
) As Complex()
Visual C++
public:
array<Complex>^ Forward(
	array<Complex>^ seq
)

Parameters

seq
Type: array< Imsl.Math..::.Complex >[]()[]
A Complex array containing the sequence to be transformed.

Return Value

A Complex array containing the transformed sequence.

See Also