How can we do for following fprintf formating
Mostra commenti meno recenti
How can i show power 2 of x in fprintf as general format?
3 Commenti
Ameer Hamza
il 27 Nov 2020
Can you further explain? What is the output you expect in the command window or the file?
PULAK Kumer
il 27 Nov 2020
PULAK Kumer
il 27 Nov 2020
Risposta accettata
Più risposte (2)
Francis Adesayo
il 21 Nov 2022
1 voto
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 Commenti
Star Strider
il 21 Nov 2022
Note that doing this with fprintf is the actual question being posed here.
Francis Adesayo
il 21 Nov 2022
Modificato: Francis Adesayo
il 21 Nov 2022
%use alt+253 to get superscript 2.
fprintf('x²\n')
In my mind, this makes the code look cleaner than say:
fprintf('x%c',char(178))
Proof of concept —
ssc = [185 178 179];
fprintf('\tx%c\n', char(ssc))
Vectorised!
.
Francis Adesayo
il 21 Nov 2022
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
il 27 Nov 2020
0 voti
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
1 Commento
PULAK Kumer
il 27 Nov 2020
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!