On Wed, 23 Aug 2006 13:51:02 -0700
Sebastian Haase <[EMAIL PROTECTED]> wrote:

> 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 .

We've got __abs__ :-)

> 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.

eh, no. things that return new arrays should be functions. (As opposed to
views of existing arrays, like a.T)

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

Shouldn't be: abs(x) looks for the x.__abs__() method (which arrays have).

-- 
|>|\/|<
/--------------------------------------------------------------------------\
|David M. Cooke                      http://arbutus.physics.mcmaster.ca/dmc/
|[EMAIL PROTECTED]

-------------------------------------------------------------------------
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