필터 지우기
필터 지우기

convert real numbers to img form

조회 수: 1 (최근 30일)
armin m
armin m 2021년 11월 26일
편집: John D'Errico 2021년 11월 26일
hi.i have real number which i want to convert t img form. how can i do this?
e.g: 8 to 8i
tnx

답변 (1개)

Chunru
Chunru 2021년 11월 26일
a = 8
a = 8
b = a*1i % method 1
b = 0.0000 + 8.0000i
c = complex(0, a) % method 2
c = 0.0000 + 8.0000i
  댓글 수: 1
John D'Errico
John D'Errico 2021년 11월 26일
편집: John D'Errico 2021년 11월 26일
+1 of course, as this seems to cover the bases completely.
I would only add that MATLAB does not have a purely imaginary form, only a complex form. Since the OP seems to be hoping to see a number of the form 8i, they may become confused when seeing a zero real part displayed. If the real part is zero, then the result is purely imaginary.

댓글을 달려면 로그인하십시오.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by