Takuya Miyashita
This site
Web
Start:
* datetime 軸の目盛りフォーマット修正 [#k5db5fb9]
** 概要 [#ied06d1f]
日本語で MATLAB を使用していて datetime 軸を使うと,デフ...
** xtickformat [#m1606fd8]
x軸が datetime だとしたら,原則は [[xtickformat>https://j...
#codeprettify(lang-matlab){{
xtickformat('MM/dd')
}}
で 01/30 のような表記になる.
** secondary label の yyyy 年を yyyy に [#pa31c047]
月単位,日単位の図を描いた時に,secondary label に「yyyy...
「年」という文字を抜きたければ,ax をなんらかの Axes オプ...
#codeprettify(lang-matlab){{
ax.XAxis.SecondaryLabelFormat = 'yyyy';
}}
のようにする.
End:
* datetime 軸の目盛りフォーマット修正 [#k5db5fb9]
** 概要 [#ied06d1f]
日本語で MATLAB を使用していて datetime 軸を使うと,デフ...
** xtickformat [#m1606fd8]
x軸が datetime だとしたら,原則は [[xtickformat>https://j...
#codeprettify(lang-matlab){{
xtickformat('MM/dd')
}}
で 01/30 のような表記になる.
** secondary label の yyyy 年を yyyy に [#pa31c047]
月単位,日単位の図を描いた時に,secondary label に「yyyy...
「年」という文字を抜きたければ,ax をなんらかの Axes オプ...
#codeprettify(lang-matlab){{
ax.XAxis.SecondaryLabelFormat = 'yyyy';
}}
のようにする.
Page:
Edit with a page name which already exists