Create a specular colormap

3 vues (au cours des 30 derniers jours)
Maria445
Maria445 le 15 Mar 2019
Modifié(e) : Adam le 15 Mar 2019
I'm using the patch function with a "hot" colormap.
However, I'd like the colormap to be specular; namely I'd like it to be centered on zero and have the same color for positive and negative values with the same absolute value.
Is it possible to do it?

Réponse acceptée

Adam
Adam le 15 Mar 2019
Modifié(e) : Adam le 15 Mar 2019
figure; imagesc( rand(100) - 0.5 ); % Random data centred on 0
baseCmap = hot( 256 );
cmap = [ flip( baseCmap(2:end,:) ); baseCmap ];
colormap( cmap )
caxis( [-0.5 0.5] )
  1 commentaire
Maria445
Maria445 le 15 Mar 2019
Thank you a lot!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Blue dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by