![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/199944/image.png)
Plot as a decimal and not a fraction
1 view (last 30 days)
Show older comments
Marisabel Gonzalez
on 30 Dec 2018
Edited: Star Strider
on 30 Dec 2018
xtext = ['$\it{\bf{(A_{B}C)^{',rats(m),'}}}$'];
xlabel(xtext,'Interpreter','Latex','FontSize', 15 )
This is my code for my xlabel.
m, the slope, is always returned as a fraction and not as a decimal.
when I type "format bank" on the line before I still get the same result in my xlabel
0 Comments
Accepted Answer
Star Strider
on 30 Dec 2018
Edited: Star Strider
on 30 Dec 2018
Change that to something else if you want a decimal output.
Example —
m = pi;
xtext = sprintf('$\\it{\\bf{(A_{B}C)^{%.2f}}}$', m)
produces:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/199944/image.png)
More Answers (0)
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!