How to plot three different time series?
이전 댓글 표시
Hi, i´m pretty much a newbie in MATLAB and are struggling with how I can plot three different time series, and then provide three additional plots highligthing the dependence with respect to the time to maturity (one for each of three given dates). Someone who knows how I can procide, and which codes i could use?
Thanku so much in advance!
댓글 수: 2
Nom
2019년 10월 29일
Not sure entirely what you mean, but if you wish to plot three different plots on top of each other you can just use the hold on and hold off function.
e.g.
plot (x,y)
hold on
plot(x1,y1)
plot(x2,y2)
hold off
Sahithi Kanumarlapudi
2019년 11월 1일
편집: Sahithi Kanumarlapudi
2019년 11월 4일
Yes, Could you provide some more information on the question
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!