Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can i specify an xticklabel as a range so for the first 12 data points it shows 2008 across it and for the next 12 it shows 2009 and so on?

1 回表示 (過去 30 日間)
Ben Moore
Ben Moore 2018 年 11 月 29 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
im plotting a 132x1 vector and would like the x axis to show a year for every 12 data points and wouod like it to so as a range so the label would indicate that points 1-12 are 2008,13-24 are 2009 and so on

回答 (2 件)

madhan ravi
madhan ravi 2018 年 11 月 29 日

Luna
Luna 2018 年 11 月 29 日
Hi Ben,
Maybe this could help?
yearDef = cell(24,1)
yearDef(1:12,1) = {'2008'}
yearDef(13:end,1) = {'2009'};
xticklabels(yearDef)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by