Borrar filtros
Borrar filtros

LaTeX text in legend command

5 visualizaciones (últimos 30 días)
Anna
Anna el 4 de Oct. de 2023
Comentada: Dyuman Joshi el 4 de Oct. de 2023
I'd like to use a subscript in equation in legend in a Bode plot with the following code
s=tf('s');
G=725/((s+1)*(s+2.5)*(s+25));
Go=G/(s+1);
DeltaG=-s/(s+1);
IDG=1/DeltaG;
F=1;
T1=feedback(F*G,1);
figure
h=bodeplot(IDG,T1);
setoptions(h,'PhaseVisible','off')
set(findall(gcf,'type','line'),'linewidth',2)
h1=legend('$\Delta_{G}$','$T$');
set(h1,'Interpreter','latex')
the legend for the blue line should be

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 4 de Oct. de 2023
s=tf('s');
G=725/((s+1)*(s+2.5)*(s+25));
Go=G/(s+1);
DeltaG=-s/(s+1);
IDG=1/DeltaG;
F=1;
T1=feedback(F*G,1);
figure
h=bodeplot(IDG,T1);
setoptions(h,'PhaseVisible','off')
set(findall(gcf,'type','line'),'linewidth',2)
h1=legend('$\Delta\_{G}$','$T$','Location','southwest','FontSize',12);
set(h1,'Interpreter','latex')
  2 comentarios
Anna
Anna el 4 de Oct. de 2023
Great, it is exactly what I was looking for.
Thanks a lot!
Dyuman Joshi
Dyuman Joshi el 4 de Oct. de 2023
You are welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by