Clear Filters
Clear Filters

How to know the bin ranges of a histogram

2 views (last 30 days)
Dear all,
I have a 2D coordinates files (PC1-PC2.txt, attached) in which each row contains two values and corresponds to a point in space.
by using:
D=dlmread('PC1-PC2.txt');
counts=hist3(D,[40,40]);
I can get a 40 by 40 matrix in which each element represents the number of the original values in the 2-column matrix D falling into the corresponding bin of the histogram.However, how could I get the exact ranges of each bin of the histogram?
And then I wish to figure out which of the histogram (counts) bins each point (each line) in the matrix D falls into. How should I do that?
Best regards.
Yeping Sun

Accepted Answer

Walter Roberson
Walter Roberson on 19 Sep 2016
[counts, bincenters] = hist3(D,[40,40]);
"[N,C] = hist3(X,...) returns the positions of the bin centers in a 1-by-2 cell array of numeric vectors"
  2 Comments
Yeping Sun
Yeping Sun on 19 Sep 2016
Edited: Walter Roberson on 19 Sep 2016
Thank you! By using:
[counts, bincenters] = hist3(D,[40,40]);
I get:
bincenters =
[1x40 double] [1x40 double]
But how to show these numbers of the bincenters?
Walter Roberson
Walter Roberson on 19 Sep 2016
disp('bin x')
bincenters{1}
disp('bin y')
bincenters{2}

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!