Is it possible to make contour graph with log scale colorbar?

41 visualizzazioni (ultimi 30 giorni)
So, basicaly it's all explained in the title. I would like to make contourf plot but in such a way that the colorbar is in log scale because I have quite a large range of values in my data.
I've read all the help on contour and contourf functions and colorbar but nothing useful can be found there.
Thank You in advance!

Risposta accettata

Wayne King
Wayne King il 12 Ago 2012
Modificato: Wayne King il 12 Ago 2012
Sure just take the log() of the input matrix Z. I'm assuming your data are nonnegative.
z = peaks;
z = abs(z);
contourf(log(z))
colorbar
Or if you want it in "dB"
contourf(10*log10(z))
  1 Commento
Marin
Marin il 14 Ago 2012
Yeah this works fine, thank You :)
By the way, is there a way to manualy write labels on colorbar? What I mean is, when I plot
contourf(log10(z))
my colorbar has values 0, 1, 2, 3, ... is there any way I can get it to write 10^0, 10^1, 10^2, 10^3, ... ?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Contour Plots 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!

Translated by