label on the plot
1 回表示 (過去 30 日間)
古いコメントを表示
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?
採用された回答
Star Strider
2021 年 3 月 29 日
Two options:
xlabel('A_z^{-1/4} (ba)^{-1/4}')
or:
xlabel('$A_z^{-\frac{1}{4}} (ba)^{-\frac{1}{4}}$', 'Interpreter','latex')
.
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!