Labelling several axes with the same name
이전 댓글 표시
I have a figure with four subplots. I would like the x-axis to be labelled as "position" for all of them. How can I do this with one line of code?
댓글 수: 1
Daniel Shub
2012년 5월 3일
Duplicate to http://www.mathworks.com/matlabcentral/answers/37239-labelling-several-axes-with-the-same-name
채택된 답변
추가 답변 (1개)
Jan
2012년 5월 3일
H(1) = subplot(1,2,1);
H(2) = subplot(1,2,2);
set(get(H, 'XLabel'), 'String', 'position');
Does this work? I cannot test it currently.
댓글 수: 1
Daniel Shub
2012년 5월 3일
No, get(H, 'XLabel') returns a cell array that set doesn't like. See my answer for one fix.
카테고리
도움말 센터 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!