This is the sort of programming environment I would love to have in
python.
http://flowingdata.com/2012/02/20/live-coding-and-inventing-on-principle/
--
---
| Alan K. Jackson| To see a World in a Grain of Sand
On Sun, Feb 19, 2012 at 05:44:27AM -0500, David Warde-Farley wrote:
> I think the comments about the developer audience NumPy will attract are
> important. There may be lots of C++ developers out there, but the
> intersection of (truly competent in C++) and (likely to involve oneself in
> NumPy
On 21/02/2012 19:26, Neal Becker wrote:
> What is the correct way to find the installed location of arrayobject.h?
>
> On fedora, I had been using:
> (via scons):
>
> import distutils.sysconfig
> PYTHONINC = distutils.sysconfig.get_python_inc()
> PYTHONLIB = distutils.sysconfig.get_python_lib(1)
>
What is the correct way to find the installed location of arrayobject.h?
On fedora, I had been using:
(via scons):
import distutils.sysconfig
PYTHONINC = distutils.sysconfig.get_python_inc()
PYTHONLIB = distutils.sysconfig.get_python_lib(1)
NUMPYINC = PYTHONLIB + '/numpy/core/include'
But on ub
Thank you guys for replies!
On Mon, 20 Feb 2012, Christopher Jordan-Squire wrote:
> If you're using numpy 2.0 (the development branch), the function
> numpy.random.choice might do what you're looking for.
yeap -- handy one, although would require manual control over
repetitions lazy me was trying
On Tue, Feb 21, 2012 at 4:04 AM, Travis Oliphant wrote:
> It uses llvm-py (modified to work with LLVM 3.0) and code I wrote to do the
> translation from Python byte-code to LLVM. This LLVM can then be "JIT"ed.
> I have several applications that I would like to use this for. It would
> be pos