How to avoid automatic conversion of complex to real?

2 Ansichten (letzte 30 Tage)
Lars Hansson
Lars Hansson am 23 Mär. 2023
Beantwortet: Bruno Luong am 23 Mär. 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 Kommentar
Lars Hansson
Lars Hansson am 23 Mär. 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

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Bruno Luong
Bruno Luong am 23 Mär. 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.

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by