This file is indexed.

/usr/share/freemat/help/text/hist.mdc is in freemat-help 4.0-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
HIST HIST Histogram Function

Usage


	n=hist (y)
	n=hist (y,x)
	n=hist (y,x,norm)

 Produce histogram counts or plots.

 With one vector input argument, plot a histogram of the values with
 10 bins.  The range of the histogram bins is determined by the range
 of the data.

 Given a second scalar argument, use that as the number of bins.

 Given a second vector argument, use that as the centers of the bins,
 with the width of the bins determined from the adjacent values in
 the vector.

 If third argument is provided, the histogram is normalised such that
 the sum of the bars is equal to norm.

 Extreme values are lumped in the first and last bins.