Change the title of a Bode Plot
    조회 수: 53 (최근 30일)
  
       이전 댓글 표시
    
Hi all,
I've been working with the Bode Plot options in MATLAB, speciffically bodeplot so as to customise it a bit more.
I've manged to figure out how to change axis limts and so on, but I canot figure out how to change the title of the plot to have it reflect the following title for example; "Bode plot of  "
"
 "
"I can get it to work for a plot using the plot command, but not for the bodeplot. I can index into the structure, but can't get the latex to work in there, it just comes back with text, and not the desired title. I've only just started working with LaTex within MATLAB, so I guess my issue is there.
Any help appreciated.
Thanks
Gerard

clear; 
clc;
Gsys = tf(2,[0.25 1]);
h = bodeplot(Gsys);
t = '$\frac{8}{{{s}^{2}}+4s}$';
p = getoptions(h);
p.XLim = {[0.1 100]};
p.YLim(1) = {[-60 30]};
p.YLim(2) = {[-180 90]};
p.Title.String = {['t','interpreter','latex']};
setoptions(h,p);
grid
axes_handles = findall(gcf, 'type', 'axes');
leg = legend(axes_handles(3),'$\frac{8}{s(s+4)}$','interpreter','latex');
set(leg,'FontSize',17);
set(leg,'Location','southwest');
hold on
댓글 수: 0
채택된 답변
  Adam Danz
    
      
 2022년 3월 15일
        p.Title.String = t;
p.Title.Interpreter = 'latex'; 
and you'll probably want
p.Title.FontSize = 20; 
댓글 수: 4
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Response Computation and Visualization에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


