>
> This is in contrast to the effect of the following code:
>
> try:
>from math import *
>import pylab as p
> except:
>print "Couldn't import all dependent libraries"
>sys.exit()
> dataLength = 100
> data = [sin(2*pi*x/dataLength) for x in range(0,dataLength)]
> p.p
Hello,
I execute the following code:
try:
from math import *
import pylab as p
except:
print "Couldn't import all dependent libraries"
sys.exit()
dataLength = 100
data = [sin(2*pi*x/dataLength) for x in range(0,dataLength)]
p.plot(data)
p.show()
This produces a f