Complex number determination

How can I check if a number is imaginary? I want to set an if function, that if a variable is an aimginary number then something will happen.

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 1월 3일

5 개 추천

z - your number
out = imag(z) ~= 0;
if out = true, then z - complex number
OR
out = isreal(z)
if out = false, then z - complex number

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

질문:

2012년 1월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by