DISTR, target, bins, values
DISTR(bins, values [, /IGNORELIMIT, /INCREASELIMIT])
Distributes the values over the corresponding
bins. The function returns an array containing the
gathered totals in bins 0 through MAX(values), unless some
of the bin numbers in bins are negative, in which case the
first element contains the data for the most negative bin. If
values contains only 1s, then DISTR(bins,values) equals
HIST(bins). The subroutine adds the values to the proper bins of
target.
The function form does not allow a value range over !MAXHISTSIZE
(measured from the most negative value or zero to the maximum value),
unless one of the keywords is specified. /IGNORELIMIT just
ignores the value of !MAXHISTSIZE, and /INCREASELIMIT
increases its value to accomodate the current (possibly very large!)
range of values.
See also: HIST, !MAXHISTSIZE
[2.10.852]