can you remove complex values from a plot

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.

 Respuesta aceptada

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

3 comentarios

G
G el 24 de Oct. de 2014
Editada: G el 24 de Oct. de 2014
the real command will just get rid of the imaginary part, I want to ignore the whole complex value if possible.
Sean de Wolski
Sean de Wolski el 24 de Oct. de 2014
So More
des teg
des teg el 15 de Jun. de 2022
saved time Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

G
G
el 24 de Oct. de 2014

Comentada:

el 15 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by