Effacer les filtres
Effacer les filtres

How to find complex numbers in an array and turn it into something else?

87 vues (au cours des 30 derniers jours)
So if I had an array that contains real numbers and complex number such as this:
r =
0.2876 + 0.3069i
0.2876 - 0.3069i
0.3127 + 0.0000i
And I wanted to change any complex numbers to 0?

Réponse acceptée

Star Strider
Star Strider le 13 Oct 2015
This works:
r = [0.2876 + 0.3069i
0.2876 - 0.3069i
0.3127 + 0.0000i];
r(imag(r) ~= 0) = 0
r =
0.0000e+000
0.0000e+000
312.7000e-003
Test for the imaginary part to be not equal to zero to get only the real values. Then set the complex values to zero.
  2 commentaires
Tin Nguyen
Tin Nguyen le 13 Oct 2015
Thank you very much. How about if I want to make it NaN?
Star Strider
Star Strider le 13 Oct 2015
My pleasure.
To replace them with NaN, the assignment becomes:
r(imag(r) ~= 0) = NaN
r =
NaN
NaN
312.7000e-003

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by