Hi

It is said that function calls are expensive. Does that mean one must
use available methods instead?

Eg.  x is a NumPy array, and I need its transpose

Should I use

>>> x.T

or
>>> numpy.transpose(T)   ?

Does it matter which one I'm using ? If not, under what conditions
does it become important to think about this distinction?

Thanks
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to