num2str with latex
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, so I have this label which works fine. However, I've created a function in which the exponent varies (1/4). Therefore, I put a variable m in there and used num2str but the label doesn't come up right....
How could I apply num2str in the exponent for this case?
xlabel('$\it{\bf{(f_{ohm}P)^{1/4}}}$','Interpreter','Latex','FontSize', 15 )
2 commentaires
Réponse acceptée
Luna
le 17 Déc 2018
Try this below:
m = 1/4;
a = ['$\it{\bf{(f_{ohm}P)^{',rats(m), '}}}$'];
xlabel(a,'Interpreter','Latex','FontSize', 15 );
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!