Definition at line 53 of file C2Functions.py. 00053 : 00054 "make sure returned scalar arguments are not numpy scalars" 00055 if not operator.isSequenceType(y): 00056 return float(y), float(yp), float(ypp) 00057 else: 00058 return y, yp, ypp 00059 00060 except: import Numeric as _numeric
|