Main Content

IFFT

Compute inverse fast Fourier transform (IFFT)

  • IFFT block

Libraries:
DSP HDL Toolbox / Transforms

Description

The IFFT block provides two architectures that implement the algorithm for FPGA and ASIC applications. You can select an architecture that optimizes for either throughput or area.

  • Streaming Radix 2^2 — Use this architecture for high-throughput applications. This architecture supports scalar or vector input data. You can achieve gigasamples-per-second (GSPS) throughput, also called super sample rates, using vector input. Since 2025a, this architecture also supports specifying the FFT size by using an input port, when you use scalar input data.

  • Burst Radix 2 — Use this architecture for a minimum resource implementation, especially with large fast-Fourier-transform (FFT) sizes. Your system must be able to tolerate bursty data and higher latency. This architecture supports only scalar input data.

The block accepts real or complex data, provides hardware-friendly control signals, and optional output frame control signals.

Note

You can also generate HDL code for this hardware-optimized algorithm, without creating a Simulink® model, by using the DSP HDL IP Designer app. The app provides the same interface and configuration options as the Simulink block.

Examples

Ports

Input

expand all

Input data, specified as a scalar or column vector of real or complex values. Vector input is supported with the Streaming Radix 2^2 architecture, and not supported with variable FFT size. The vector size must be a power of 2, in the range from 1 to 64, and less than or equal to the FFT length.

The software supports double and single data types for simulation, but not for HDL code generation.

Data Types: fixed point | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | single | double
Complex Number Support: Yes

Control signal that indicates if the input data is valid. When valid is 1 (true), the block captures the values from the input data port. When valid is 0 (false), the block ignores the values from the input data port.

When you set the Architecture parameter to Burst Radix 2, or set the FFT length source parameter to Input port, you must apply input data only when the ready backpressure signal is 1 (true). The block ignores the input data and valid signals when ready is 0 (false).

Data Types: Boolean

Since R2025a

Provide the FFT size as log2(FFTLength). For example, if the FFT length is 32, specify 5 at the port. For HDL code generation, the FFT length must be a power of 2 between 22 and 216, so the port value must be in the range 2 to 16. If the value is less than 2, the block uses an FFT length of 4. If the value is greater than 16, the block uses an FFT length of 216.

To notify the block of the new FFT length, set loadFFTLen to 1 (true) for at least one cycle with a new value on log2FFTLen.

When you use variable FFT length, your input data must comply with the ready backpressure signal. You can specify a new FFT length while a frame is processing. The block sets ready to 0 (false) while it finishes the current frame, then sets ready to 1 (true) to indicate it is ready for the next frame. The block uses the new FFT length for the next input frame. If you set loadFFTLen to 1 (true) when no frame is processing, the block sets ready to 0 (false) for four cycles while it updates internal logic.

Dependencies

To enable this port, set the FFT length source parameter to Input port.

Data Types: fixdt(0,M,0) where 1<M<6

Since R2025a

Control signal that indicates if the input FFT size is valid. When loadFFTLen is 1 (true), the block captures the value from the input log2FFTLen port. When loadFFTLen is 0 (false), the block ignores the value from the input log2FFTLen port.

Dependencies

To enable this port, set the FFT length source parameter to Input port.

Data Types: Boolean

Control signal that clears internal states. When reset is 1 (true), the block stops the current calculation and clears internal states. When the reset is 0 (false) and the input valid is 1 (true), the block captures data for processing.

For more reset considerations, see the Reset Signal section on the Hardware Control Signals page.

Dependencies

To enable this port, on the Control Ports tab, select the Enable reset input port parameter.

Data Types: Boolean

Output

expand all

Output data, returned as a scalar or column vector of real or complex values. When input is fixed-point data type and scaling is enabled, the output data type is the same as the input data type. When the input is integer type and scaling is enabled, the output is fixed-point type with the same word length as the input integer. The output order is bit-reversed by default. If scaling is disabled, the output word length increases to avoid overflow. For more information, see the Divide butterfly outputs by two parameter.

Data Types: fixed point | double | single
Complex Number Support: Yes

Control signal that indicates if the output data is valid. When valid is 1 (true), the block returns valid data from the output data port. When valid is 0 (false), the values from the output data port are not valid.

Data Types: Boolean

Control signal that indicates that the block is ready for new input data sample on the next cycle. When ready is 1 (true), you can specify the data and valid inputs for the next time step. When ready is 0 (false), the block ignores any input data in the next time step.

For a waveform that shows this protocol, see the timing diagrams in the Control Signals section.

Dependencies

To enable this port, set the Architecture parameter to Burst Radix 2, or with Architecture set to Streaming Radix 2^2, set the FFT length source parameter to Input port.

Data Types: Boolean

Control signal that indicates the first valid cycle of the output frame. When start is 1 (true), the block returns the first valid sample of the frame on the output data port.

Dependencies

To enable this port, on the Control Ports tab, select the Enable start output port parameter.

Data Types: Boolean

Control signal that indicates the last valid cycle of the output frame. When end is 1 (true), the block returns the last valid sample of the frame on the output data port.

Dependencies

To enable this port, on the Control Ports tab, select the Enable end output port parameter.

Data Types: Boolean

Parameters

expand all

Main

Specify the hardware implementation for the IFFT.

  • Streaming Radix 2^2 — Low-latency architecture. This architecture supports GSPS throughput when using vector input. Since R2025a, this architecture supports variable FFT length. When you use variable FFT length, your input data must comply with the ready backpressure signal.

  • Burst Radix 2 — Minimum resource architecture. This architecture does not support vector input. When you use this architecture, your input data must comply with the ready backpressure signal. This architecture supports only fixed FFT lengths.

For more details about these architectures, see Algorithms.

Since R2025a

You can enter a constant FFT length as a parameter or provide time-varying FFT length by using an input port. When you select Input port, the log2FFTLen, loadFFTLen, and ready ports appear on the block.

Dependencies

This parameter is only available when you set Architecture to Streaming Radix 2^2.

When you select Input port, the Output in bit-reversed order and Input in bit-reversed order parameters are disabled. The block uses natural input order and bit-reversed output order.

Specify the number of data points used for one IFFT calculation. For HDL code generation, the FFT length must be a power of 2 between 22 and 216.

Dependencies

This parameter is available when you set Architecture to Burst Radix 2 or you set the FFT length source parameter to Property.

Since R2025a

Specify the maximum number of data points used for one FFT calculation. This parameter can help limit the hardware resources needed for a variable-size FFT design. For HDL code generation, the FFT length must be a power of 2 between 22 to 216.

If you provide an input frame after reset without setting the FFT length from the port, the block uses the Maximum FFT length parameter value.

Dependencies

This parameter is available when you set the FFT length source parameter to Input port.

Specify the hardware implementation for complex multipliers. Each multiplication is implemented either with Use 4 multipliers and 2 adders or with Use 3 multipliers and 5 adders. Depending on your synthesis tool and target device, one option may be faster or smaller.

When you select this check box, the output elements are bit-reversed relative to the input order. To return output elements in linear order, clear this check box.

The IFFT algorithm calculates output in the reverse order to the input. If you specify the output to be in the same order as the input, the algorithm performs an extra reversal operation. For more information, see Linear and Bit-Reversed Output Order.

Dependencies

When you set the FFT length source parameter to Input port, the Output in bit-reversed order and Input in bit-reversed order parameters are disabled. The block uses natural input order and bit-reversed output order.

When you select this check box, the block expects input data in bit-reversed order. By default, the check box is cleared and the input is expected in linear order.

The IFFT algorithm calculates output in the reverse order to the input. If you specify the output to be in the same order as the input, the algorithm performs an extra reversal operation. For more information, see Linear and Bit-Reversed Output Order.

Dependencies

When you set the FFT length source parameter to Input port, the Output in bit-reversed order and Input in bit-reversed order parameters are disabled. The block uses natural input order and bit-reversed output order.

When you select this parameter, the IFFT implements an overall 1/FFTLength scale factor by dividing the output of each butterfly multiplication by two. This adjustment keeps the output of the IFFT in the same amplitude range as its input. If you disable scaling, the block avoids overflow by increasing the word length by 1 bit after each butterfly multiplication. The bit growth is the same for both architectures.

Data Types

Rounding mode used for internal fixed-point calculations. When the input is any integer or fixed-point data type, this block uses fixed-point arithmetic for internal calculations. This option does not apply when the input data is single or double type. Rounding applies to twiddle-factor multiplication and scaling operations. For more information about rounding modes, see Rounding Modes.

Control Ports

Enable the input reset port on the block.

Enable the output start port on the block. This output signal indicates the first sample of a frame of output data.

Enable the output end port on the block. This output signal indicates the last sample of a frame of output data.

Algorithms

expand all

References

[1] Algnabi, Y.S, F.A. Aldaamee, R. Teymourzadeh, M. Othman, and M.S. Islam. “Novel architecture of pipeline Radix 2^2 SDF FFT Based on digit-slicing technique.” 10th IEEE International Conference on Semiconductor Electronics (ICSE). 2012, pp. 470–474.

Extended Capabilities

expand all

Version History

Introduced in R2014a

expand all

See Also

Blocks

Objects