私のプログラムでは、3つのプロットを取得したいのですが、
plot(CumulativeReward)
title('Cumulative Reward, gamma=1');
xlabel('episode number');
ylabel('CumulativeReward')
plot(Pathlength)
title('pathlength as a function of episode number');
xlabel('episode number');
ylabel('pathlength')
x = -pi:.1:pi;
y = sin(x);
plot(x,y)
3 つのプロットはすべて 1 つのフレームにまとめられていますが、各プロットを別のフレーム ボックスに配置するにはどうすればよいですか?