반응형
1) 그래프 글씨크기 및 폰트
set(gca,'Fontsize',14, 'Fontname', 'times new roman');
> 현재 좌표축 및 차트에서 크기를 14로, 폰트를 Times New Roman으로 설정
2) 그래프 배경 흰색
set(gcf,'Color','w')
> 현재 Figure에서 배경색을 흰색으로 설정
3) x축 범위는 알고 있고, y축만 auto로 설정하고 싶은 경우
axis([0 360 -50 20]); axis 'auto y''
> 예를 들어 x축을 0~360으로 설정, y축으로 -50~20으로 우선 설정 후, y축 자동으로 다시 설정
Example)
figure;
hold on;
plot(Phi, 10*log10(4*pi*abs(MoM).^2),'r','LineWidth', 2);
plot( Phi, Total_VIRAF,'g','LineWidth',2);
plot( Phi, 10*log10(4*pi*abs(Our_ITD+Our_PO).^2),'b','LineWidth',2);
plot(Phi, 10*log10(4*pi*abs(Our_PO+Our_ITD_test).^2),'k:','LineWidth',2);
legend('MoM', 'PO+ITD(VIRAF)','PO+ITD(Our-concept)','PO+ITD(Our-rigorous)');
xlabel('Observation angle, \phi (degree)')
ylabel('Monostatic RCS, \sigma (dBsm)')
title('HH-pol. RCS of Scattered Field (PO + Fringe)')
axis([0 360 -30 20]); axis 'auto y';
set(gca,'Fontsize',14, 'Fontname', 'times new roman');
set(gcf,'Color','w');
grid; grid minor;
반응형
'Major > Programming' 카테고리의 다른 글
[MATLAB] (MacOS/Macbook Pro/MATLAB 2020a) Python 환경 디렉토리 지정하기 (0) | 2023.09.07 |
---|---|
[MATLAB] 파일읽기/쓰기 시 파일 경로 지정 (0) | 2023.04.11 |
for문 안 변수선언 (1) | 2022.09.19 |
NASTRAN (.nas) 파일 (0) | 2022.09.01 |
Visual Studio 2022 프로젝트/솔루션 이름 변경 (0) | 2022.08.28 |
댓글