can you remove complex values from a plot

15 ビュー (過去 30 日間)
G
G 2014 年 10 月 24 日
コメント済み: des teg 2022 年 6 月 15 日
I am using plotyy but I have noticed that it begins to try and plot complex values. I know the data is accurate up until the numbers become complex. Is there a way to tell matlab to not plot the complex values.
Edit
I am plotting 2 [3x99] matrices. In one matrix the values will become complex after a point while the other matrix will always be real. I am looking for a way to ignore the complex values.

採用された回答

Sean de Wolski
Sean de Wolski 2014 年 10 月 24 日
編集済み: Sean de Wolski 2014 年 10 月 24 日
xreal = real(x)
More
x = [3+0i,5+1i,4+2i,1+0i]
x(~imag(x))
  3 件のコメント
Sean de Wolski
Sean de Wolski 2014 年 10 月 24 日
So More
des teg
des teg 2022 年 6 月 15 日
saved time Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by