Main Content

차트에 제목 및 축 레이블 추가하기

이 예제에서는 title함수, xlabel 함수, ylabel 함수를 사용하여 차트에 제목과 축 레이블을 추가하는 방법을 보여줍니다. 또한 글꼴 크기를 변경하여 좌표축 텍스트의 모양을 사용자 지정하는 방법도 보여줍니다.

단순한 선 플롯 생성

x-2π에서 2π 사이의 100개 선형 간격 값으로 생성합니다. y1y2를 각각 x의 사인 및 코사인 값으로 생성합니다. 두 데이터 세트를 모두 플로팅합니다.

x = linspace(-2*pi,2*pi,100);
y1 = sin(x);
y2 = cos(x);
figure
plot(x,y1,x,y2)

Figure contains an axes object. The axes object contains 2 objects of type line.

제목 추가

title 함수를 사용하여 제목을 차트에 추가합니다. 그리스 문자 π를 표시하려면 TeX 마크업 \pi를 사용하십시오.

title('Line Plot of Sine and Cosine Between -2\pi and 2\pi')

Figure contains an axes object. The axes object with title Line Plot of Sine and Cosine Between - 2 pi blank and blank 2 pi contains 2 objects of type line.

축 레이블 추가

xlabel 함수와 ylabel 함수를 사용하여 축 레이블을 차트에 추가합니다.

xlabel('-2\pi < x < 2\pi') 
ylabel('Sine and Cosine Values') 

Figure contains an axes object. The axes object with title Line Plot of Sine and Cosine Between - 2 pi blank and blank 2 pi, xlabel - 2 pi blank < blank x blank < blank 2 pi, ylabel Sine and Cosine Values contains 2 objects of type line.

범례 추가하기

legend 함수를 사용하여 각 데이터 세트를 식별하는 범례를 그래프에 추가합니다. 선이 플로팅되는 순서대로 범례 설명을 지정합니다. 선택적으로, 기본 방위(동, 서, 남, 북) 또는 기본 방위 사이의 방위(북동, 북서, 남동, 남서), 이 8가지 방향 중 하나를 사용하여(이 경우, 'southwest') 범례 위치를 지정합니다.

legend({'y = sin(x)','y = cos(x)'},'Location','southwest')

Figure contains an axes object. The axes object with title Line Plot of Sine and Cosine Between - 2 pi blank and blank 2 pi, xlabel - 2 pi blank < blank x blank < blank 2 pi, ylabel Sine and Cosine Values contains 2 objects of type line. These objects represent y = sin(x), y = cos(x).

글꼴 크기 변경하기

Axes 객체는 좌표축의 모양을 사용자 지정하는 데 사용할 수 있는 속성을 갖습니다. 예를 들어, FontSize 속성은 제목, 레이블, 범례의 글꼴 크기를 제어합니다.

gca 함수를 사용하여 현재 Axes 객체에 액세스합니다. 그런 다음, 점 표기법을 사용하여 FontSize 속성을 설정합니다.

ax = gca;
ax.FontSize = 13;

Figure contains an axes object. The axes object with title Line Plot of Sine and Cosine Between - 2 pi blank and blank 2 pi, xlabel - 2 pi blank < blank x blank < blank 2 pi, ylabel Sine and Cosine Values contains 2 objects of type line. These objects represent y = sin(x), y = cos(x).

또는, R2022a부터는 fontsize 함수를 사용하여 좌표축 텍스트의 글꼴 크기를 변경할 수 있습니다.

변수 값이 포함된 제목

num2str 함수를 사용하여 값을 텍스트로 변환하는 방법으로 제목 텍스트에 변수 값을 포함시킵니다. 비슷한 방법을 사용하여 변수 값을 축 레이블 또는 범례 항목에 추가할 수 있습니다.

sin(π)/2 값이 포함된 제목을 추가합니다.

k = sin(pi/2);
title(['sin(\pi/2) = ' num2str(k)])

Figure contains an axes object. The axes object with title sin( pi / 2 ) blank = blank 1, xlabel - 2 pi blank < blank x blank < blank 2 pi, ylabel Sine and Cosine Values contains 2 objects of type line. These objects represent y = sin(x), y = cos(x).

참고 항목

| | | | |

관련 항목