본문 바로가기
유용한 지식/매트랩

매트랩 그래프 제목, 축 이름들 줄 띄우기 방법 | plot 고급 편집2

by 그래도_明 2021. 1. 23.

매트랩 그래프 제목, 축 이름들 줄 띄우기 방법 | plot 고급 편집2

 

 

 

함수를 그릴 때 나는 주로 매트랩을 사용한다.

그래서 그래프의 제목이나 축 이름 같은 것을 적을 때 줄 한 칸을 띄어서 줄 바꾸기를 해주고 싶을 때가 종종 있는데 아무리 찾아도 간편한 방법을 못찾겠다.

그나마 찾은 방법이 아예 문장을 변수에 지정하여 newline 명령을 이용하는 방법이다.

예시는 다음과 같으니 필요하면 참고해보길 바란다.

----------------

figure(1)
title(['AC Servo Motor' newline 'Experiment'])


마찬가지로 xlabel이나 ylabel에도 저런 식으로 넣어 축 이름도 줄 변경을 할 수 있다.

xlabel(['Motorstr_x' newline 'Speed']) 

ylabel(['Motor' newline 'Torque'])

figure(1)
title(['AC Servo Motor' newline 'Experiment'])
xlabel(['Motorstr_x' newline 'Speed']) 
ylabel(['Motor' newline 'Torque']) 
     (adsbygoogle = window.adsbygoogle || []).push({});

 

 

+++

이글을 올리고 더 편한 방법을 발견하여 공유한다.

figure(1)
title({'AC Servo Motor','Experiment'})
xlabel({'Motorstr_x','Speed'}) 
ylabel({'Motor','Torque'})

figure(1)
title({'AC Servo Motor','Experiment'})

xlabel({'Motorstr_x','Speed'}) 

ylabel({'Motor','Torque'})

반응형

댓글