角度は変化しますが、オブジェクトのサイズは一定のままになるように、Matlab で 3D オブジェクトの一連のビューを生成しようとしています。Matlab は軸全体をビューに合わせようとするため、プロットを正面から見るか斜めから見るかによって、オブジェクトが縮小または拡大します。例として:
[x,y,z] = sphere(50); % coordinates of a sphere
surf(x,y,z); % plot the sphere
axis image off
view(0,0) % at this angle the sphere fills the axes
view(-37.5,30) % at this angle the sphere is much smaller
どの角度から見ても球が同じサイズに見えるようにするにはどうすればよいですか?