6 lines
113 B
Text
6 lines
113 B
Text
with(Statistics):
|
|
n := 100000:
|
|
X := Sample( Normal(0,1), n );
|
|
Mean( X );
|
|
StandardDeviation( X );
|
|
Histogram( X );
|