subplot(m,n,p) を使う。
のグラフの鳥瞰図と等高線 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
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: のグラフの鳥瞰図と等高線
Next: H..4 数値実験結果を表示するときの注意 Up: H. misc Previous: H..2 等高線を描く 桂田 祐史 2017-06-19