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
Code Block |
---|
typedef struct _ModuleComplexToRealImagFract32 { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure } ModuleComplexToRealImagFract32Class; |
Pins
Input Pins
Name: cmplx
Description: Complex input
...
Sample rate range: Unrestricted
Complex support: Complex
Output Pins
Name: real
Description: Real output
...
Description: Imaginary output
Data type: fract32
MATLAB Usage
File Name: complex_to_real_imag_fract32_module.m
...