Thank you
label on the plot
3 views (last 30 days)
Show older comments
I want to make the xlabel (A_z)^-1/4 (ba)^(-1/4) in plot. (i.e. I want to raise power -1/4 and lower z for the same letter A)
xlabel('A_z^(-1/4) (ba)^(-1/4)')
but mine didnt work.Can you please help me how to write it?
Accepted Answer
Star Strider
on 29 Mar 2021
Two options:
xlabel('A_z^{-1/4} (ba)^{-1/4}')
or:
xlabel('$A_z^{-\frac{1}{4}} (ba)^{-\frac{1}{4}}$', 'Interpreter','latex')
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Line Plots 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!