What is the counterpart of the command (mxSetImagData) that can work for Interleaved Complex API?

3 visualizzazioni (ultimi 30 giorni)
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 Commento
James Tursa
James Tursa il 25 Mar 2025
Modificato: James Tursa il 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 ...?

Accedi per commentare.

Risposte (1)

Shantanu Dixit
Shantanu Dixit il 24 Mar 2025
Modificato: Shantanu Dixit il 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:
Hope this helps!

Categorie

Scopri di più su Structures in Help Center e File Exchange

Prodotti


Release

R2024b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by