Fast Fourier transform — optimized for HDL code generation
The HDL FFT System object™ provides two architectures to optimize either throughput or area. Use the streaming Radix 2^2 architecture for high-throughput applications. This architecture supports scalar or vector input data. You can achieve giga-sample-per-second (GSPS) throughput using vector input. Use the burst Radix 2 architecture for a minimum resource implementation, especially with large FFT sizes. Your system must be able to tolerate bursty data and higher latency. This architecture supports only scalar input data. The object accepts real or complex data, provides hardware-friendly control signals, and has optional output frame control signals.
To calculate the fast Fourier transform:
Create the dsp.HDLFFT
object and set its properties.
Call the object with arguments, as if it were a function.
To learn more about how System objects work, see What Are System Objects?.
returns an HDL FFT
System object, FFT_N
= dsp.HDLFFTFFT_N
, that performs a fast Fourier transform.
sets properties using one or more name-value pairs. Enclose each property name in single
quotes.FFT_N
= dsp.HDLFFT(Name,Value
)
fft128 = dsp.HDLFFT('FFTLength',128)
[
returns the fast Fourier transform (FFT) when using the burst Radix 2 architecture. The
Y
,validOut
,ready
]
= FFT_N(X
,validIn
)ready
signal indicates when the object can accept input
samples.
To use this syntax, set the Architecture property to
'Burst Radix 2'
. For example:
FFT_N = dsp.HDLFFT(___,'Architecture','Burst Radix 2'); ... [y,validOut,ready] = FFT_N(x,validIn)
[
also returns frame control signals Y
,startOut
,endOut
,validOut
]
= FFT_N(X
,validIn
)startOut
and
endOut
. startOut
is true
on
the first sample of a frame of output data. endOut
is
true
for the last sample of a frame of output data.
To use this syntax, set the StartOutputPort and EndOutputPort properties to
true
. For example:
FFT_N = dsp.HDLFFT(___,'StartOutputPort',true,'EndOutputPort',true); ... [y,startOut,endOut,validOut] = FFT_N(x,validIn)
[
returns the FFT when Y
,validOut
]
= FFT_N(X
,validIn
,resetIn
)validIn
is true
and
resetIn
is false
. When
resetIn
is true
, the object stops the current
calculation and clears all internal state.
To use this syntax set the ResetInputPort property to
true
. For example:
FFT_N = dsp.HDLFFT(___,'ResetInputPort',true); ... [y,validOut] = FFT_N(x,validIn,resetIn)
To use an object function, specify the
System object as the first input argument. For
example, to release system resources of a System object named obj
, use
this syntax:
release(obj)