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 _ModuleComplexToRealImag { ModuleInstanceDescriptor instance; // Common Audio Weaver module instance structure } ModuleComplexToRealImagClass; |
Pins
Input Pins
Name: cmplx
Description: Complex input
...
Sample rate range: Unrestricted
Complex support: Complex
Output Pins
Name: real
Description: Real output
...
Data type: {float, int, fract32}
MATLAB Usage
File Name: complex_to_real_imag_module.m
...