How can I print the heatmap as grayscale?
조회 수: 34(최근 30일)
표시 이전 댓글
A = rand(5)
heatmap(A, option)
I want to see heatmap in grayscale.
OR
Can I use 'saveas' to save in grayscale?
댓글 수: 0
채택된 답변
추가 답변(1개)
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');
댓글 수: 0
참고 항목
범주
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!