rng('default') % For reproducibility
r = normrnd(3,1,100,1);
두 개의 서브플롯이 있는 Figure를 만들고 Axes 객체를 ax1 및 ax2로 반환합니다. 대응되는 Axes 객체를 참조하여 각 좌표축 세트에 정규분포가 피팅된 히스토그램을 만듭니다. 왼쪽 서브플롯에 10개 Bin이 있는 히스토그램을 플로팅합니다. 오른쪽 서브플롯에 5개 Bin이 있는 히스토그램을 플로팅합니다. 대응되는 Axes 객체를 title 함수로 전달하여 각 플롯에 제목을 추가합니다.
ax1 = subplot(1,2,1); % Left subplot
histfit(ax1,r,10,'normal')
title(ax1,'Left Subplot')
ax2 = subplot(1,2,2); % Right subplot
histfit(ax2,r,5,'normal')
title(ax2,'Right Subplot')
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.