can you remove complex values from a plot

21 views (last 30 days)
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.

Accepted Answer

Sean de Wolski
Sean de Wolski on 24 Oct 2014
Edited: Sean de Wolski on 24 Oct 2014
xreal = real(x)
More
x = [3+0i,5+1i,4+2i,1+0i]
x(~imag(x))
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Two y-axis in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!