Borrar filtros
Borrar filtros

How to avoid automatic conversion of complex to real?

1 visualización (últimos 30 días)
Lars Hansson
Lars Hansson el 23 de Mzo. de 2023
Respondida: Bruno Luong el 23 de Mzo. de 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 comentario
Lars Hansson
Lars Hansson el 23 de Mzo. de 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

Iniciar sesión para comentar.

Respuestas (1)

Bruno Luong
Bruno Luong el 23 de Mzo. de 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.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by