How to eliminate numbers without imaginary part?

조회 수: 1 (최근 30일)
Ko Fa
Ko Fa 2021년 1월 6일
댓글: Ko Fa 2021년 1월 6일
I am trying to keep just the complex numbers.
a =[
2.70810968
2.45396925
1.13928251
-4.04946201
0.8829 - 0.13089*i
0.1308*i + 0.8829
0.15285*i - 2.00890
-0.1528510*i - 2.0089069]
Thanks for any help

채택된 답변

Walter Roberson
Walter Roberson 2021년 1월 6일
format long g
a =[
2.70810968
2.45396925
1.13928251
-4.04946201
0.8829 - 0.13089*i
0.1308*i + 0.8829
0.15285*i - 2.00890
-0.1528510*i - 2.0089069]
a = 8×1
2.70810968 + 0i 2.45396925 + 0i 1.13928251 + 0i -4.04946201 + 0i 0.8829 - 0.13089i 0.8829 + 0.1308i -2.0089 + 0.15285i -2.0089069 - 0.152851i
b = a(imag(a) ~= 0)
b = 4×1
0.8829 - 0.13089i 0.8829 + 0.1308i -2.0089 + 0.15285i -2.0089069 - 0.152851i

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by