source:
development/stochastic_study/test_generator.py
@
3295
Last change on this file since 3295 was 3035, checked in by , 19 years ago | |
---|---|
File size: 192 bytes |
Rev | Line | |
---|---|---|
[3035] | 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.