Info
此问题已关闭。 请重新打开它进行编辑或回答。
which are the default properties of plot for the MATLAB 2014b?
2 次查看(过去 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!