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!