Complex number determination

조회 수: 40 (최근 30일)
iael
iael 2012년 1월 3일
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일
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개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by