Effacer les filtres
Effacer les filtres

How can I print the heatmap as grayscale?

26 vues (au cours des 30 derniers jours)
도현 김
도현 김 le 12 Avr 2021
A = rand(5)
heatmap(A, option)
I want to see heatmap in grayscale.
OR
Can I use 'saveas' to save in grayscale?

Réponse acceptée

J Chen
J Chen le 12 Avr 2021
heatmap(A)
colormap(gray)
  4 commentaires
Sean de Wolski
Sean de Wolski le 12 Avr 2021
colormap(flip(gray))
도현 김
도현 김 le 15 Avr 2021
Thank you sir !!!

Connectez-vous pour commenter.

Plus de réponses (1)

Richard Quist
Richard Quist le 6 Déc 2021
As of R2021a the exportgraphics function supports a Colorspace option for both image and vector formats that you can use to generate grayscale output:
exportgraphics(gca, 'output.jpg', 'colorspace', 'gray');
exportgraphics(gca, 'output.pdf', 'colorspace', 'gray');

Community Treasure Hunt

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

Start Hunting!

Translated by