Colorbar range: maximum not given
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Simao Nobrega
el 26 de Ag. de 2015
Comentada: Simao Nobrega
el 27 de Ag. de 2015
Hello,
I have two contourf plots (one plane at z=cte and another at y=cte) that have the same maximum temperature, 65.5ºC. When I "ask" matlab for the colorbar, I see that the maximum temperature on the right colorbar plot (y=cte) does not correspond to the true value.
Any ideas why is this happening and what is the best soluiton?
Thank you in advance.
Best regards, Simão

0 comentarios
Respuesta aceptada
Walter Roberson
el 26 de Ag. de 2015
Notice that the blob is mostly off-screen, either because the data is that way or because the ylimit has been set to not show all of it. It is plausible that in what is shown on the plot, the maximum never reaches the full 65.5.
You can use caxis() to control the maximum that colorbar will use.
After the first plot you could use
first_caxis = caxis();
and then after the second plot you could use
caxis(first_caxis);
before you call colorbar()
Más respuestas (0)
Ver también
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!
