determine axis limits *before* plotting..?
이전 댓글 표시
Hi everyone,
I need to determine the y-axis limits "before" rendering my plot, b/c the elements are rendered in a loop, one at a time. xlim() isn't any use in this case. Will I have to reverse-engineer MATLAB's algorithm, or is there another approach?
Thanks, Brad
댓글 수: 3
Oleg Komarov
2012년 9월 9일
I don't understand your question. Can't you use xlim after the loop?
Bradley Stiritz
2012년 9월 9일
Oleg Komarov
2012년 9월 9일
I think we might help you if you posted the code.
채택된 답변
추가 답변 (1개)
Image Analyst
2012년 9월 9일
You can save the y and x limits for the current axes at any time by using the ylim and xlim functions:
% Save initial limits.
initial_ylim_values = ylim();
initial_xlim_values = xlim();
% Now plot something that will change the ylimits
plot(x, y); % Some y that will change the y limits.
after_ylim_values = ylim();
after_xlim_values = xlim();
댓글 수: 2
Bradley Stiritz
2012년 9월 9일
Image Analyst
2012년 9월 9일
Then you need to set "hold on" and MATLAB will "lock down" all those settings and not allow subsequent plots to change them.
카테고리
도움말 센터 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!