Create a heatmap from x and y values
42 次查看(过去 30 天)
显示 更早的评论
Good morning,
I was hoping that someone could help me with this, I want to turn x and y coordinates into a heatmap:
I have a matrix edf_n, with edf_n.x and edf_n.y where these both have 530934 values that correspont to eye tracking data and where a participant was looking on the screen. I can plot this using a scatterplot: scatter(edf_n.x, edf_n.y) which looks like this:
However, what I want is to instead have a heatmap, instead.
Thank you very much!
Douwe
0 个评论
回答(1 个)
David Hill
2022-8-29
t=table(edf_n.x,edf_n.y);
heatmap(t,'Var1','Var2');
3 个评论
Image Analyst
2022-8-29
You keep foregetting to attach your data, leading me to think you've never read the posting guidelines.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

