Printing special characters in an axis label
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
L'O.G.
am 6 Dez. 2022
Beantwortet: Walter Roberson
am 6 Dez. 2022
How do you print special character(s) using sprintf? I want to use this or similar to add special characters to an axis label as in the following:
Here the degree sign doesn't print:
ylabel(sprintf('T at %.0f \circF',Temp))
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 6 Dez. 2022
Temp = -19.6
ylabel(sprintf('T at %.0f \\circF',Temp), 'Interpreter', 'tex')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!