Info
この質問は閉じられています。 編集または回答するには再度開いてください。
which are the default properties of plot for the MATLAB 2014b?
1 回表示 (過去 30 日間)
古いコメントを表示
It seems that the default properties(linewidth,font size for title and label etc) for the new version of MATLAB have changed.I cant find a release of the default values?Which are they?
0 件のコメント
回答 (1 件)
Rick Rosson
2014 年 11 月 7 日
編集済み: Rick Rosson
2014 年 11 月 7 日
The easiest way to find out is simply to ask MATLAB:
fig = figure;
ax = axes;
lin = plot(1:10,rand(1,10));
get(fig)
get(ax)
get(lin)
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!