change colormap of histogram2

66 ビュー (過去 30 日間)
arnold
arnold 2019 年 5 月 13 日
編集済み: arnold 2019 年 5 月 13 日
Hi,
I was looking for a way to change the colormap for histogram2 from parula to something else. Couldn't find it.
x = randn(5000);
y = randn(5000);
h = histogram2(test1, test2, 'DisplayStyle','tile');
again: I couldn't find any handle or option to change the colormap.I'd appreciate a hint.
kind regards
Arnold

採用された回答

Steven Lord
Steven Lord 2019 年 5 月 13 日
Use the colormap function. First let's make the histogram2 plot.
x = randn(5000);
y = randn(5000);
h = histogram2(x, y, 'DisplayStyle','tile');
Next, I'll enable the colorbar (so we can see the color scale.)
colorbar
Finally I'll change the colormap. I'll use jet but you can use one of the ones on the colormap documentation page or one of your own design.
colormap(jet)
  1 件のコメント
arnold
arnold 2019 年 5 月 13 日
ok, I should have guessed that. thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by