which are the default properties of plot for the MATLAB 2014b?
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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
Dimitrios
2014년 11월 7일
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!