Simple Interpolation in Numpy?
Nick Bower
nick at nickbower.com
Thu Aug 31 05:47:02 EDT 2000
More information about the Python-list mailing list
Thu Aug 31 05:47:02 EDT 2000
- Previous message (by thread): Simple Interpolation in Numpy?
- Next message (by thread): os,access argument problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Nick Bower wrote: > > How do I do do simple interpolation using NumPy? I can see an > > interpolation function in the NumPy C source, so I'm not sure why it's > > not presented at the Python module level. > > > > Found it - was undocumented though. > > from Numeric import * > new_y = arrayfns.interp(y,x,new_x) Duh: import arrayfns new_y = arrayfns.interp(y,x,new_x)
- Previous message (by thread): Simple Interpolation in Numpy?
- Next message (by thread): os,access argument problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list