H..3 複数のグラフィックスを並べて描く

subplot(m,n,p) を使う。

$ z=f(x,y)=x^2+y^2$ のグラフの鳥瞰図と等高線

nx=50;
ny=40;
hx=2/nx;
hy=2/ny;
[X,Y]=meshgrid(-1:hx:1,-1:hy:1);
Z=X.^2-Y.^2;
subplot(1,2,1)
surfc(X,Y,Z)
subplot(1,2,2)
contour(X,Y,Z)
axis square

図 11: $ z=f(x,y)=x^2+y^2$ のグラフの鳥瞰図と等高線
\includegraphics[width=15cm]{eps/test3out.eps}

桂田 祐史
2017-06-19