How to plot a second axis with vectors of different length?

1 回表示 (過去 30 日間)
Fred
Fred 2015 年 3 月 30 日
回答済み: dpb 2015 年 3 月 30 日
I want to create a plot with 3 time series. First DO with values starting from 1998 to 2012 and for secondary axis two other time series (lets call them F and D) which only have values for 1991, 2001, 2006 and 2011. It should look like this (I can do it in excel but not in Matlab):
I tried
plotyy
function but it gave me error for not having same vector length. What can I do? Thanks

採用された回答

dpb
dpb 2015 年 3 月 30 日
You don't show what you tried specifically, but there's no problem with plotyy; you've got one array of some number of points and a second array of two variables with length four...
hA=plotyy(t1,d1,t2,d2,@plot,@scatter)
datetick('x','keeplimits')
where t1,d1 are the data fro the D0 vector and d2 is a 4x2 array of the area/forest data at the times in t2. This uses the "classic" date number; if have newer release with the timeseries class there are alternate ways to get the time axis formatting...

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by