How do you plot two vectors starting from different points

Suppose I have three vectors: Year=[2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010], X=[1 2 1 4 5 6 7 2 3 5 6], and Y=[12 3 4].
I want to plot them on the same graph where 'Year' is on the X axis but where 'Y' starts at the year 2004. How do I do this?

 採用された回答

David Hill
David Hill 2022 年 4 月 7 日

0 投票

Year=[2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010];
X=[1 2 1 4 5 6 7 2 3 5 6];
Y=[12 3 4];
plot(Year,X,Year(5:7),Y)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2022 年 4 月 7 日

回答済み:

2022 年 4 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by