Plot different color data range

9 visualizaciones (últimos 30 días)
Hazards
Hazards el 8 de En. de 2020
Respondida: Sindar el 9 de En. de 2020
Hello everyone,
I want to plot a simple time series over time, but with 2 different colors.
For a specific range of data on my x-axis (time values), I want to change the color.
How can I do that?
Thanks in advance!
  3 comentarios
Hazards
Hazards el 8 de En. de 2020
Of course
darova
darova el 8 de En. de 2020
Did it work?

Iniciar sesión para comentar.

Respuestas (1)

Sindar
Sindar el 9 de En. de 2020
x = -10:.01:10;
y = sin(x);
idx = x<=0;
plot(x(idx),y(idx),'r*',x(~idx),y(~idx),'b*')

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by