Plotting Multivariate time series

1 Ansicht (letzte 30 Tage)
M. M.  Farhad
M. M. Farhad am 10 Jan. 2017
Kommentiert: Star Strider am 10 Jan. 2017
I am trying to plot several bivariate time series having the same set of variables. To be clear I am trying to plot 5 time series each having the same variables ,say A and B. I want my plot to show different shapes for variables A and B, say square for variable A in each series and triangle for variable B. And each of the series will b expressed by different colors.

Akzeptierte Antwort

Star Strider
Star Strider am 10 Jan. 2017
See if this does what you want:
t = 1:10;
A = rand(1,length(t));
B = rand(1,length(t))+1;
figure(1)
plot(t, A, '-sg', 'MarkerFaceColor','g')
hold on
plot(t, B, '-dr', 'MarkerFaceColor','r')
hold off
grid
See the documentation for the plot function for details and more information.
  2 Kommentare
M. M.  Farhad
M. M. Farhad am 10 Jan. 2017
Thanks, that really helped.
Star Strider
Star Strider am 10 Jan. 2017
My pleasure.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by