|
From: Karl E. <um...@cc...> - 2005-02-08 16:48:15
|
In order to allow the use of numarray instead of Numeric for gnuplot I
suggest changing all the
import Numeric
lines to:
try:
import Numeric
except:
try:
import numarray
Numeric=numarray
except:
raise
Which seems to work...
|