What is the counterpart of the command (mxSetImagData) that can work for Interleaved Complex API?
3 views (last 30 days)
Show older comments
I need something like:
call mxSetImagData(plhs(1), mxCalloc(n, 8))
and I am using (Interleaved Complex API).
The problem is that (mxSetImagData) is not compatible with Interleaved Complex API.
Therefore, I need the counterpart of (mxSetImagData) which works for the environment (Interleaved Complex API)
1 Comment
James Tursa
on 25 Mar 2025
Edited: James Tursa
on 25 Mar 2025
This question needs more clarity. The mxSetImagData( ) function attaches a pointer to the variable that becomes the imaginary data pointer in the old separate real/imag data model. With interleaved real/imag data model, this makes no sense. So what are you actually trying to do? Turn a real variable into a complex variable? Zero out the imaginary part of an existing complex variable? Attach an existing array to a variable that will become the imaginary data? Or ...?
Answers (1)
Shantanu Dixit
on 24 Mar 2025
Edited: Shantanu Dixit
on 24 Mar 2025
Hi Magdy,
To the best of my understanding, you are looking for a replacement for 'mxSetImagData' that is compatible with the Interleaved Complex API. Since 'mxSetImagData' only works with the Separate Complex API, it cannot be used in the interleaved representation, where real and imaginary parts are stored together.
In the interleaved Complex API you can use 'mxGetComplexDoubles' to obtain a pointer to the complex data and directly modify the imaginary components.
% For the below code block
plhs[0] = mxDuplicateArray(prhs[0]);
mxDouble *dc = (mxDouble*)mxMalloc(rows*cols*sz);
mxSetImagData(plhs[0], dc);
for (int i = 0 ; i < rows*cols ; i++)
{
dc[i] = i+1;
}
%%%
% Instead use 'mxGetComplexDoubles' for interleaved complex API
plhs[0] = mxDuplicateArray(prhs[0]);
if (mxMakeArrayComplex(plhs[0])) {
mxComplexDouble *dt = mxGetComplexDoubles(plhs[0]);
for (int i = 0 ; i < rows*cols ; i++) {
dt[i].imag = i + 1;
}
}
You can also refer to the extensive documentation provided by MathWorks on Interleaved Complex API and related functionalities:
- Support for interleaved complex API: https://www.mathworks.com/help/matlab/matlab_external/matlab-support-for-interleaved-complex.html
- mxGetComplexDoubles: https://www.mathworks.com/help/matlab/apiref/mxgetcomplexdoubles.html
- maintain complexity of mxArray: https://www.mathworks.com/help/matlab/matlab_external/upgrade-mex-files-to-use-interleaved-complex.html#mw_ed4d89db-745a-413b-a2b7-552bfa0bbcff
Hope this helps!
0 Comments
See Also
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!