Fix scaling of mesh plot during movie
조회 수: 2 (최근 30일)
이전 댓글 표시
I am creating a movie from a sequence of mesh plot images. I am trying to fix the scale in z direction, but for some reason the image scaling seems to change with every image. Any ideas. Here is what I have so far:
SWT = size(WT); zmin = min(min(min(WT)))*30; zmax = max(max(max(WT)))*30;
for m = 1:SWT(3) mesh(WT(:,:,m)) view (0.001,90) axis([1 88 1 122 zmin zmax]) caxis manual M(m) = getframe; pause(0.1) end
댓글 수: 0
답변 (1개)
Image Analyst
2013년 11월 26일
Use xlim() and ylim() to set the axes to predetermined sizes. Use set(gca, 'Position', [left, top, width, height]) to set the overall graph to a predetermined size.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!