How can we do for following fprintf formating
조회 수: 16 (최근 30일)
이전 댓글 표시
How can i show power 2 of x in fprintf as general format?
댓글 수: 3
채택된 답변
Star Strider
2020년 11월 27일
Try this:
fprintf('\tx%c\n', char(178))
producinig:
x²
.
댓글 수: 2
Star Strider
2020년 11월 27일
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
추가 답변 (2개)
Francis Adesayo
2022년 11월 21일
you can type x and then on your keyboard press and hold the alt key while you type 253 on the number pad on the right of the keyboard. This only works if your keyboard has the number pad.
You will get x².
Likewise, math symbols such as the integral symbol --> ∫ x² dx can be gotten by pressing the windows button and semicolon button. And then go to symbols tab, and then to math symbols and select the one you want. This way you dont have to type any special ascii code or use %c.
댓글 수: 4
Star Strider
2022년 11월 21일
Proof of concept —
ssc = [185 178 179];
fprintf('\tx%c\n', char(ssc))
Vectorised!
.
Francis Adesayo
2022년 11월 21일
The OP just wanted x² printed on the command window. I simply provided an alternative way which has the added benefit of making the code look cleaner. Cheers Star Strider.
Ameer Hamza
2020년 11월 27일
It is not possible to do such thing in command window currently: https://www.mathworks.com/matlabcentral/answers/255568-putting-a-subscript-into-a-string-displaying-the-command-window
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!