source: trunk/anuga_work/development/stochastic_study/test_generator.py @ 7884

Last change on this file since 7884 was 3035, checked in by ole, 18 years ago

Working with Suresh at ACFR

File size: 192 bytes
Line 
1
2from RandomArray import normal
3
4
5x = normal(50,.1,10000)
6
7# Plot
8from pylab import ion, hold, plot, title, xlabel, ylabel, legend, savefig, show
9
10ion()
11plot(x, 'k.')
12   
13show()
Note: See TracBrowser for help on using the repository browser.