2D histogram for field distribution

1 次查看(过去 30 天)
I have a problem with the 2d histogram attach file. I have the coordinates (x,y) of a lot of soccer players and i want to know their field distribution and how many times each palyer is in each "N" bens of the field. Using the 2d histogram code, i have a quetions?
- table size: 120m x 90m (same of soccer field) - bens size: 1m2 - N bens= 10800

采纳的回答

Image Analyst
Image Analyst 2015-4-19
I said to use hist3:
fontSize = 20;
numberOfPeopleOnField = 1000;
% Make up some X coordinates for numberOfPeopleOnField people.
x = 120 * rand(numberOfPeopleOnField, 1);
% Make up some Y coordinates for numberOfPeopleOnField people.
y = 90 * rand(numberOfPeopleOnField, 1);
xy = [x, y];
hist3(xy,[120, 90])
xlabel('X', 'FontSize', fontSize);
ylabel('Y', 'FontSize', fontSize);
zlabel('Count (# of People)', 'FontSize', fontSize);
  2 个评论
Image Analyst
Image Analyst 2015-4-19
That is a 2D histogram, despite their poor choice of a name hist3(). It's really a 2D histogram but when they display it, they use a perspective view so it looks 3D-ish so I guess that's why they called it hist3().

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by