Define condition for both imaginary and real parts of numbers

1 Ansicht (letzte 30 Tage)
Hi. I have a matrix. It contains numbers like a+bi. I want define a condition for numners of matrix. That say if both a and b be non zero do .... .i think iy should be like this.
if a&&b~=0
do
end BUt it does not works.tnx

Akzeptierte Antwort

Adam Danz
Adam Danz am 26 Nov. 2021
x = pi + i
x = 3.1416 + 1.0000i
if real(x)~=0 && imag(x)~=0
disp("YES")
end
YES

Weitere Antworten (0)

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by