How to avoid automatic conversion of complex to real?

2 vues (au cours des 30 derniers jours)
Lars Hansson
Lars Hansson le 23 Mar 2023
I've encountered many difficult-to-find bugs due to how Matlab silently and automatically converts complex arrays to real, similar to this pattern:
% create complex array A
A = [0 + 0i, 0 + 1i];
% check if real
isreal(A)
ans = logical
0
% create complex scalar x
x = complex(0 + 0i);
% check if real
isreal(x)
ans = logical
0
% replace one value in A (complex) with x (complex)
A(2) = x;
isreal(A)
ans = logical
1
% A is now real
Is there any way to avoid this automatic lowering to real (when encountering complex zeros)?
Since for large A it is unnecessarily expensive to have Matlab convert it to real, only for you to have to convert it back to complex.
I have tried to get support from Mathworks (as a service request), but they only say it is working as intended.
  1 commentaire
Lars Hansson
Lars Hansson le 23 Mar 2023
It makes no sense, since if you want to reduce the memory usage, why not convert all the way down to int8 or int1?The values are all zero after all :P

Connectez-vous pour commenter.

Réponses (1)

Bruno Luong
Bruno Luong le 23 Mar 2023
Yes it works as intended, and no there is no way to disable it.
This automatic conversion also affects the CPU and sometime it is very unexpected. We have discussed this in the pass.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by