그래프 분할1 매트랩 subplot 함수 매트랩 subplot 함수 쉬운 것 같으면서 오랜만에 사용하려면 은근히 헷갈리는 함수 중 하나. 예시 코드를 올리니 자유롭게 긁어가서 수정하시길 바란다. %% Setting dt = 0.0001; % time step t = 0:dt:0.08; % time V1 = 220*sin(2*pi*60*t); % Data V2 = 110*cos(2*pi*60*t); % Data %% Plotting figure subplot(2,1,1) %% First graph window of 2X1 plot(t,V1) title('Simulation Results') xlabel('t [s]') ylabel('V1 [V]') xlim([0 0.04]) ylim([-300 300]) subplot(2,1,2) %% Secon.. 2020. 8. 2. 이전 1 다음 반응형