Hi!
numpy renamed the *function* abs to absolute.
Most functions like mean, min, max, average, ...
have an equivalent array *method*.

Why is absolute left out ?
I think it should be added .

Furthermore, looking at some line  of code that have multiple calls to 
absolute [ like f(absolute(a), absolute(b), absolute(c)) ]
I think "some people" might prefer less typing and less reading,
like f( a.abs(), b.abs(), c.abs() ).
One could even consider not requiring the "function call" parenthesis '()'  at 
all - but I don't know about further implications that might have.

Thanks,
Sebastian Haase

PS: is there any performace hit in using the built-in abs function ?


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to