How we can make a HeatMap like this?

1 回表示 (過去 30 日間)
Ali N
Ali N 2019 年 11 月 7 日
コメント済み: Ali N 2019 年 11 月 7 日
Hello all
How we can make a HeatMap like this from the data that I attached?
  1 件のコメント
darova
darova 2019 年 11 月 7 日
You have to try to use griddata

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

採用された回答

Stijn Haenen
Stijn Haenen 2019 年 11 月 7 日
編集済み: Stijn Haenen 2019 年 11 月 7 日
Hi,
Maybe not the best way but it works:
velocityrange=-80:5:80;
momentrange=-250:10:250;
for i=1:numel(momentrange)
for j=1:numel(velocityrange)
b=find(abs(moment-momentrange(i))<2.5);
c=find(abs(velocity-velocityrange(j))<5);
count=0;
for k=1:numel(b)
if find(b(k)==c)
count=count+1;
end
end
heatmap(i,j)=count;
end
end
imagesc(heatmap)
  1 件のコメント
Ali N
Ali N 2019 年 11 月 7 日
Thanks Stijn
But its not working on the data that i uploaded.

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

その他の回答 (0 件)

カテゴリ

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