File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- /*!
12
- Sampling from random distributions.
13
-
14
- This is a generalization of `Rand` to allow parameters to control the
15
- exact properties of the generated values, e.g. the mean and standard
16
- deviation of a normal distribution. The `Sample` trait is the most
17
- general, and allows for generating values that change some state
18
- internally. The `IndependentSample` trait is for generating values
19
- that do not need to record state.
20
-
21
- */
11
+ //! Sampling from random distributions.
12
+ //!
13
+ //! This is a generalization of `Rand` to allow parameters to control the
14
+ //! exact properties of the generated values, e.g. the mean and standard
15
+ //! deviation of a normal distribution. The `Sample` trait is the most
16
+ //! general, and allows for generating values that change some state
17
+ //! internally. The `IndependentSample` trait is for generating values
18
+ //! that do not need to record state.
22
19
23
20
#![ experimental]
24
21
You can’t perform that action at this time.
0 commit comments