source:
development/stochastic_study/test_generator.py
@
3290
Last change on this file since 3290 was 3035, checked in by ole, 18 years ago | |
---|---|
File size: 192 bytes |
Line | |
---|---|
1 | |
2 | from RandomArray import normal |
3 | |
4 | |
5 | x = normal(50,.1,10000) |
6 | |
7 | # Plot |
8 | from pylab import ion, hold, plot, title, xlabel, ylabel, legend, savefig, show |
9 | |
10 | ion() |
11 | plot(x, 'k.') |
12 | |
13 | show() |
Note: See TracBrowser
for help on using the repository browser.