在我的程序中,我想获得三个地块,
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)
但是所有三个图都在一个框架中,我怎样才能将每个图放在不同的框架框中?