How to change color bar limits in imagesc?

130 visualizaciones (últimos 30 días)
Zeynab Mousavikhamene
Zeynab Mousavikhamene el 7 de Jul. de 2020
Comentada: Zeynab Mousavikhamene el 8 de Jul. de 2020
For heatmap, thisc command would work:
'ColorLimits',[50 100]
but it did not work for imagesc.

Respuesta aceptada

Akira Agata
Akira Agata el 8 de Jul. de 2020
You can do that task by setting CLim of the axes, like:
figure
imagesc(rand(4));
ax = gca;
ax.CLim = [0 1];
colorbar

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by