1. subplot: plot을 나눠서 한번에 보여줌
% subplot: Create axes in tiled positions
x = linspace(0, 10*pi, 1000);
y = cos(x);
subplot(2, 3, 1) % 2행 3열로 나눈 tile에서 1번째에 배치
plot(x, y)
subplot(2, 3, 2) % 2행 3열로 나눈 tile에서 2번째에 배치
2. 각 subplot에 보이는 그래프의 구간을 다르게 설정
% subplot: Create axes in tiled positions
x = linspace(0, 10*pi, 1000);
y = cos(x);
for (i = 1: 1: 6)
subplot(2, 3, i)
plot(x(i*100: 100 + i * 100), y(i * 100: 100 + i * 100)) % plot에 보이는 구간 설정
end
반응형
댓글