Re: [Cython] aritmetic with arrays in Cython

2014-08-07 Thread Stefan Behnel
Ian Henriksen schrieb am 08.08.2014 um 00:58: > On Thu, Aug 7, 2014 at 1:58 AM, Matěj Laitl wrote: >> you may also check out https://github.com/strohel/Ceygen if it would suit >> your needs. Interesting project. Thanks for sharing. > Ideally, I'm still trying to find a way to be able to do > som

Re: [Cython] aritmetic with arrays in Cython

2014-08-07 Thread Ian Henriksen
Nice module! That seems to implement most of the basic functionality I've seen lacking. Ideally, I'm still trying to find a way to be able to do something syntactically like this: cpdef whateverfunction(double[:] a, float[:] b): return a + a * b + .5 It would be ideal if that sort of thing we

Re: [Cython] aritmetic with arrays in Cython

2014-08-07 Thread Matěj Laitl
On Monday 04 of August 2014 13:11:13 Ian Henriksen wrote: > Hi all, > I noticed that some time ago there was a pull request ( > https://github.com/cython/cython/pull/144) open that was trying to > implement basic arithmetic operations with arrays. This seems to have also > been proposed in CEP 518