Document toolboxDocument toolbox

(8.D.2.2 ) ComplexToRealImag

Overview

Converts a complex signal into separate real and imaginary components

Discussion

The complex_to_real_imag module take a complex input signal and converts it into separate real and imaginary components. The first output, "real", stores the real component and the second output "imag" stores the imaginary component. There are no restrictions on the number of channels or the blockSize

Type Definition

typedef struct _ModuleComplexToRealImag { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure } ModuleComplexToRealImagClass;

Pins

Input Pins

Name: cmplx

Description: Complex input

Data type: {float, int, fract32}

Channel range: Unrestricted

Block size range: Unrestricted

Sample rate range: Unrestricted

Complex support: Complex

Output Pins

Name: real

Description: Real output

Data type: {float, int, fract32}

 

Name: imag

Description: Imaginary output

Data type: {float, int, fract32}

MATLAB Usage

File Name: complex_to_real_imag_module.m

M=complex_to_real_imag_module(NAME) This module converts a complex signal into separate real and imaginary components. Arguments: NAME - name of the module.

Â