how do I fprintf a power?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
cwp
il 22 Ott 2024
Modificato: Aquatris
il 23 Ott 2024 alle 9:48
Hi, I can't figure out how to get fprintf() to display "r^2" without the "^". I have
fprintf("R^2; %.4f%s%.4f\n", gof.rsquare)
but this displays the "^". How do I fix this?
0 Commenti
Risposta accettata
Star Strider
il 22 Ott 2024
Using ‘char(178)’ is an option —
gof.rsquare = 0.975;
fprintf("R"+char(0178)+"; %.4f%s%.4f\n", gof.rsquare)
.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Structures in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!