www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/SpecifyNumberOfBinsInEachDimensionExample.m

    %% Specify Number of Bins in Each Dimension
% Distribute 10 pairs of numbers into 12 bins. Specify 3 bins in the
% x-dimension, and 4 bins in the y-dimension.

% Copyright 2015 The MathWorks, Inc.

x = [1 1 2 3 2 2 1 1 2 3];
y = [5 6 3 8 9 1 2 7 5 1];
nbins = [3 4];
[N,Xedges,Yedges] = histcounts2(x,y,nbins)