フィルターのクリア

How to create a heatmap from recorded positions

9 ビュー (過去 30 日間)
Ricardo Duarte
Ricardo Duarte 2021 年 9 月 7 日
コメント済み: Ricardo Duarte 2021 年 9 月 8 日
Dear all,
Im trying to create a distribution map (or heatmap) from a table that represents ships positions (see figure).
Based on the previous figure, I would like to transform that into a heatmap. How can I do it.
Thanks in advance

採用された回答

Dave B
Dave B 2021 年 9 月 8 日
I'm not sure if you're asking about collapsing the trajectories to a single value per ship, or just displaying a binned version of the scatter? If it's the latter, binscatter (or histogram2) might solve this problem.
x=randn(1000,1);
y=x+randn(1000,1)/3;
nexttile;scatter(x,y,'.');title('scatter')
nexttile;binscatter(x,y);title('binscatter')
nexttile;histogram2(x,y,'DisplayStyle','tile');title('histogram2')
c=colorbar;
c.Label.String='Count';
  1 件のコメント
Ricardo Duarte
Ricardo Duarte 2021 年 9 月 8 日
Thank you very much!

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

その他の回答 (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