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

41 visualizaciones (últimos 30 días)
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!

Respuesta aceptada

Wayne King
Wayne King el 12 de Ag. de 2012
Editada: Wayne King el 12 de Ag. de 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 comentario
Marin
Marin el 14 de Ag. de 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, ... ?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by