Plotting Multivariate time series

조회 수: 1 (최근 30일)
M. M.  Farhad
M. M. Farhad 2017년 1월 10일
댓글: Star Strider 2017년 1월 10일
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.

채택된 답변

Star Strider
Star Strider 2017년 1월 10일
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
M. M.  Farhad
M. M. Farhad 2017년 1월 10일
Thanks, that really helped.
Star Strider
Star Strider 2017년 1월 10일
My pleasure.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by