How can I show axis ticks as fractions?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hamid Attar
am 27 Sep. 2020
Bearbeitet: madhan ravi
am 27 Sep. 2020
Hello,
I want my Y-axis ticks to show fractional values, instead of decimal values. Ideally, I want in the range of 1/150 (lowest) to 1/50 (highest) in whole numbers. Something like [1/150, 1/125, 1/100, 1/75, 1/50] on the y axis. How can I do this?

Thanks
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 27 Sep. 2020
Bearbeitet: madhan ravi
am 27 Sep. 2020
yticklabels("1/" + (150 : -25 : 50))
% or
yticklabels(compose("1/%d", (150 : -25 : 50))
% or
set(gca, 'YTickLabel', sprintfc('1/%d', (150 : -25 : 50))) % for older versions, sprintfc() undocumented
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Axis Labels 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!

