How to use <=, >= logic operators for imaginary part of a complex number?

2 vues (au cours des 30 derniers jours)
Fred
Fred le 22 Mai 2018
Hello,
I have a question regarding how can I apply (<= or >=) logic operators for imaginary part of a complex number. MATLAB documentation says x >= y is equal to real(x)>=real(y), if x y are complex, but I want to compare imaginary parts as well. Is there any way I can do that in MATLAB?
Thanks,

Réponse acceptée

James Tursa
James Tursa le 22 Mai 2018
You can do this explicitly by picking off the imag parts. E.g.,
imag(x) >= imag(y)

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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