MATLABで等しい軸を持つ2つのサブプロットを作成する方法
% データの作成 x = 0:0.1:10; % x軸のデータ y1 = sin(x); % サブプロット1のデータ y2 = cos(x); % サブプロット2のデータ % サブプロットの作成 figure; % サブプロット1 subplot(2,1,1); % 2行1列のグリッドで、1番目のサブプロットを作成 plot(x, y1); title('サブプロット1'); xlabel('x'); ylabel('y'); % サブプロット2 subplot(2,1,2); % 2行1列のグリッドで、2番目のサブプロットを作成 plot(x, y2); title('サブプロ>>More