Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-02 Thread Matthieu Brucher
Sorry : http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/ It has some publications written about the design it uses (iterators and such), really well done. Matthieu 2007/11/2, Bill Baxter [EMAIL PROTECTED]: On Nov 2, 2007 3:50 PM, Matthieu Brucher [EMAIL PROTECTED] wrote: You can

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-02 Thread Bill Baxter
Oh, I didn't realize you didn't give a link. I just googled reflexively. Anyway, that makes me think of the other generic image library I've heard of -- Adobe's GIL. Never really looked at it in much detail but checking now, it looks like it does support N-dim images.

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-02 Thread Neal Becker
Charles R Harris wrote: On 11/1/07, Bill Baxter [EMAIL PROTECTED] wrote: Ah, ok. Thanks. That does look like a good example. I've heard of it, but never looked too closely for some reason. I guess I always thought of it as the library that pioneered expression templates but that no one

[Numpy-discussion] C or C++ package like NumPy?

2007-11-01 Thread Bill Baxter
Does anyone know of a C or C++ library that's similar to NumPy? Seems like all the big C++ efforts are focused on linear algebra rather than general purpose multidimensional arrays. I've written a multidimensional array class in the D programming language with an API modeled loosely after

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-01 Thread Warren Focke
http://www.oonumerics.org/blitz/ On Fri, 2 Nov 2007, Bill Baxter wrote: Does anyone know of a C or C++ library that's similar to NumPy? Seems like all the big C++ efforts are focused on linear algebra rather than general purpose multidimensional arrays. I've written a multidimensional array

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-01 Thread Bill Baxter
Ah, ok. Thanks. That does look like a good example. I've heard of it, but never looked too closely for some reason. I guess I always thought of it as the library that pioneered expression templates but that no one actually uses. --bb On Nov 2, 2007 9:06 AM, Warren Focke [EMAIL PROTECTED]

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-01 Thread Charles R Harris
On 11/1/07, Bill Baxter [EMAIL PROTECTED] wrote: Ah, ok. Thanks. That does look like a good example. I've heard of it, but never looked too closely for some reason. I guess I always thought of it as the library that pioneered expression templates but that no one actually uses. I believe

Re: [Numpy-discussion] C or C++ package like NumPy?

2007-11-01 Thread Bill Baxter
On Nov 2, 2007 3:50 PM, Matthieu Brucher [EMAIL PROTECTED] wrote: You can look at Vigra (but I don't know if there is linear algebra, but there are views, multidimensional containers, ...). Thanks for the link. Hadn't heard of that one. --bb ___