ago wrote:
> Once I vectorize a function it does not acccept scalars anymore. Es
> 
> def f(x): return x*2
> vf = vectorize(f)
> print vf(2)
> 
> AttributeError: 'int' object has no attribute 'astype'
> 
> Is this the intended behaviour?
> 

Vectorize handles scalars in recent versions of NumPy.  Which version do 
you have?

-Travis


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to