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