Why do I keep getting this error for subplot? Am I missing a toolbox or is the code wrong?
조회 수: 2 (최근 30일)
이전 댓글 표시
Error using subplot
Unknown command option.
Error in (line 136)
h = subplot(2,1,[.12 .08],[.10 .08],[.12 .02])
댓글 수: 2
VBBV
2023년 3월 17일
편집: VBBV
2023년 3월 17일
Do you want the subplot spacing to be more compact ? or working with the below custom function ?https://in.mathworks.com/matlabcentral/fileexchange/27991-tight_subplot-nh-nw-gap-marg_h-marg_w
if so, then you need to call that function as given in instruction
[ha, pos] = tight_subplot(2,1,[.12 .08],[.10 .08],[.12 .02])
답변 (1개)
Jan
2023년 3월 17일
doc subplot
You call this command like subplot(m,n,p), where m and n are the numbers of rows and columns, and p is the index of the subplot.
What do you expect the input [.12 .08],[.10 .08],[.12 .02] to do?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!