Log log plot
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a set of data wich I want to plot in a log scale, not with the base 10, but with the base 2. How can I do that?
0 Kommentare
Akzeptierte Antwort
Grzegorz Knor
am 17 Jan. 2012
Try this code:
plot(log2(rand(100,1)*128))
ytick = get(gca, 'YTick')
str = cellstr( num2str(ytick(:),'2^{%d}') )
format_ticks(gca,' ',str)
format_ticks function you can download from:
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Annotations 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!