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
How to avoid automatic conversion of complex to real?
5 次查看(过去 30 天)
显示 更早的评论
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)
% create complex scalar x
x = complex(0 + 0i);
% check if real
isreal(x)
% replace one value in A (complex) with x (complex)
A(2) = x;
isreal(A)
% 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 个)
Bruno Luong
2023-3-23
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!