How can I print the heatmap as grayscale?

15 ビュー (過去 30 日間)
도현 김
도현 김 2021 年 4 月 12 日
回答済み: Richard Quist 2021 年 12 月 6 日
A = rand(5)
heatmap(A, option)
I want to see heatmap in grayscale.
OR
Can I use 'saveas' to save in grayscale?

採用された回答

J Chen
J Chen 2021 年 4 月 12 日
heatmap(A)
colormap(gray)
  4 件のコメント
Sean de Wolski
Sean de Wolski 2021 年 4 月 12 日
colormap(flip(gray))
도현 김
도현 김 2021 年 4 月 15 日
Thank you sir !!!

サインインしてコメントする。

その他の回答 (1 件)

Richard Quist
Richard Quist 2021 年 12 月 6 日
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');

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by