NumPy is a scientific and numerical computing extension to the Python programming language.
72
votes
1answer
1k views
Is there any way to use pythonappend with SWIG's new builtin feature?
I have a little project that works beautifully with SWIG. In particular, some of my functions return std::vectors, which get translated to tuples in Python. Now, I do a lot of numerics, so I just ...
71
votes
3answers
13k views
How do you use the ellipsis slicing syntax in Python?
This came up in Hidden features of Python, but I can't see good documentation or examples that explain how the feature works.
69
votes
5answers
5k views
Relationship between scipy and numpy
scipy appears to provide most (but not all [1]) of numpy's functions in its own namespace. In other words, if there's a function named numpy.foo, there's almost certainly a scipy.foo. Most of the ...
65
votes
4answers
11k views
Why NumPy instead of Python lists?
Is it worth my learning NumPy?
I have approximately 100 financial markets series, and I am going to create a cube array of 100x100x100 = 1 million cells. I will be regressing (3-variable) each x with ...
59
votes
1answer
18k views
Simple Digit Recognition OCR in OpenCV-Python
I am trying to implement a "Digit Recognition OCR" in OpenCV-Python (cv2). ( It is just for learning purposes ). I would like to learn both KNearest and SVM features in OpenCV.
I have 100 ...
56
votes
5answers
53k views
Python: Numpy array help. Is there a function to return the index of something in an array?
I know there is a method for python list to return the first index of something
l = list(1,2,3)
l.index(2)
>>> 1
Is there something like that for numpy arrays?
Thanks for your help :)
54
votes
10answers
25k views
Principal component analysis in Python
I'd like to use principal component analysis (PCA) for dimensionality reduction. Does numpy or scipy already have it, or do I have to roll my own using numpy.linalg.eigh?
I don't just want to use ...
36
votes
4answers
10k views
Reloading submodules in Ipython
Currently I am working on a python project that contains sub modules and uses numpy/scipy. Ipython is used as interactive console. Unfortunately I am not very happy with workflow that I am using right ...
34
votes
4answers
5k views
Benchmarking (python vs. c++ using BLAS) and (numpy)
I would like to write a program that makes extensive use of BLAS and LAPACK linear algebra functionalities. Since performance is an issue I did some benchmarking and would like know, if the approach I ...
33
votes
3answers
10k views
In-place type conversion of a NumPy array
Given a NumPy array of int32, how do I convert it to float32 in place? So basically, I would like to do
a = a.astype(numpy.float32)
without copying the array. It is big.
The reason for doing ...
32
votes
1answer
13k views
Pretty-printing of numpy.array
I'm curious, whether there is any way to print formated numpy.arrays, e.g., in the way similar to this:
x = 1.23456
print '%.3f' % x
If I want to print the numpy.array of floats, it prints several ...
31
votes
4answers
2k views
Fast tensor rotation with NumPy
At the heart of an application (written in Python and using NumPy) I need to rotate a 4th order tensor. Actually, I need to rotate a lot of tensors many times and this is my bottleneck. My naive ...
31
votes
10answers
8k views
Matrix Multiplication in Clojure vs Numpy
I'm working on an application in Clojure that needs to multiply large matrices and am running into some large performance issues compared to an identical Numpy version. Numpy seems to be able to ...
31
votes
5answers
19k views
calculate euclidean distance with numpy
I have two points in 3D:
(xa,ya,za)
(xb,yb,zb)
And I want to calculate the distance:
dist = sqrt((xa-xb)^2 + (ya-yb)^2 + (za-zb)^2)
What's the best way to do this with Numpy, or with Python in ...
30
votes
10answers
27k views
Python: how do I install SciPy on 64 bit Windows?
How do I install SciPy on my system?
Update 1: for the NumPy part (that SciPy depends on) there is actually an installer for 64 bit Windows: numpy-1.3.0.win-amd64-py2.6.msi (is direct download URL, ...
30
votes
6answers
16k views
How do I calculate percentiles with python/numpy?
Is there a convenient way to calculate percentiles for a sequence or single-dimensional numpy array?
I am looking for something similar to Excel's percentile function.
I looked in NumPy's statistics ...
27
votes
1answer
1k views
Embedding Python in MATLAB
I am trying to embed Python 2.6 into MATLAB (7.12). I wanted to embed with a mex file written in C. This worked fine for small simple examples using scalars. However, if Numpy (1.6.1) is imported ...
26
votes
3answers
19k views
How to check which version of Numpy I'm using?
How can I check which version of Numpy I'm using? I'm using Mac OS X 10.6.1 Snow Leopard.
26
votes
7answers
4k views
numpy float: 10x slower than builtin in arithmetic operations?
EDIT:
I rerun the code under the Windows 7 x64 (Intel Core i7 930 @ 3.8GHz).
Again, the code is:
from datetime import datetime
import numpy as np
START_TIME = datetime.now()
# one of the ...
26
votes
1answer
3k views
Numpy: Should I use newaxis or None?
In numpy one can use the 'newaxis' object in the slicing syntax to create an axis of length one, e.g.:
import numpy as np
print np.zeros((3,5))[:,np.newaxis,:].shape
# shape will be (3,1,5)
The ...
24
votes
10answers
18k views
Python Numpy Very Large Matrices
Numpy is an extremely useful library, and from using it I've found that it's capable of handling matrices which are quite large (10000x10000) easily, but begins to struggle with anything much larger ...
24
votes
3answers
6k views
How do I build a numpy array from a generator?
How can I build a numpy array out of a generator object?
Let me illustrate the problem:
>>> import numpy
>>> def gimme():
... for x in xrange(10):
... yield x
...
...
24
votes
1answer
3k views
View onto a numpy array?
I have a 2D numpy array. Is there a way to create a view onto it that would include the first k rows and all columns?
The point is to avoid copying the underlying data (the array is so large that ...
24
votes
2answers
22k views
PIL and numpy
Alright, I'm toying around with converting a PIL image object back and forth to a numpy array so I can do some faster pixel by pixel transformations than PIL's PixelAccess object would allow. I've ...
24
votes
5answers
4k views
Generating movie from python without saving individual frames to files
I would like to create an h264 or divx movie from frames that I generate in a python script in matplotlib. There are about 100k frames in this movie.
In examples on the web [eg. 1], I have only seen ...
23
votes
3answers
15k views
sorting arrays in numpy by column
How can I sort an array in numpy by the nth column? e.g.
a = array([[1,2,3],[4,5,6],[0,0,1]])
I'd like to sort by the second column, such that I get back:
array([[0,0,1],[1,2,3],[4,5,6]])
...
23
votes
2answers
360 views
Why Numpy treats a+=b and a=a+b differently
Is the following numpy behavior intentional or is it a bug?
from numpy import *
a = arange(5)
a = a+2.3
print 'a = ', a
# Output: a = 2.3, 3.3, 4.3, 5.3, 6.3
a = arange(5)
a += 2.3
print 'a = ', ...
23
votes
5answers
12k views
Slicing of a numpy 2d array, or how do I extract an mxm submatrix from an nxn array (n>m)
I want to slice a numpy nxn array. I want to extract an arbitrary selection of m rows and columns of that array (i.e. without any pattern in the numbers of rows/columns), making it a new, mxm array. ...
23
votes
1answer
14k views
Most efficient way to reverse a numpy array
Believe it or not, after profiling my current code, the repetitive operation of numpy array reversion ate a giant chunk of the running time. What I have right now is the list-based method:
...
22
votes
6answers
1k views
Is there a Python equivalent of range(n) for multidimensional ranges?
On Python, range(3) will return [0,1,2]. Is there an equivalent for multidimensional ranges?
range((3,2)) # [(0,0),(0,1),(1,0),(1,1),(2,0),(2,1)]
So, for example, looping though the tiles of a ...
22
votes
2answers
8k views
How to create a density plot in matplotlib?
In R I can create the desired output by doing:
data = c(rep(1.5, 7), rep(2.5, 2), rep(3.5, 8),
rep(4.5, 3), rep(5.5, 1), rep(6.5, 8))
plot(density(data, bw=0.5))
In python (with ...
22
votes
2answers
511 views
Python double free error for huge datasets
I have a very simple script in Python, but for some reason I get the following error when running a large amount of data:
*** glibc detected *** python: double free or corruption (out): ...
21
votes
4answers
13k views
find nearest value in numpy array
is there a numpy-thonic way, e.g. function, to find the 'nearest value' in an array?
example:
np.find_nearest( array, value )
thanks in advance!
21
votes
2answers
7k views
How to convert 2D float numpy array to 2D int numpy array?
How to convert real numpy array to int numpy array?
Tried using map directly to array but it did not work.
20
votes
13answers
7k views
gotchas where Numpy differs from straight python?
Folks,
is there a collection of gotchas where Numpy differs from python,
points that have puzzled and cost time ?
"The horror of that moment I shall
never never forget !"
"You will, though," ...
20
votes
3answers
2k views
Are there advantages to use the Python/C interface instead of Cython?
I want to extend python and numpy by writing some modules in C or C++, using BLAS and LAPACK. I also want to be able to distribute the code as standalone C/C++ libraries. I would like this libraries ...
20
votes
4answers
7k views
Is there a good NumPy clone for Jython?
I'm a relatively new convert to Python. I've written some code to grab/graph data from various sources to automate some weekly reports and forecasts. I've been intrigued by the Jython concept, and ...
20
votes
3answers
1k views
sparse 3d matrix/array in Python?
In scipy, we can construct a sparse matrix using scipy.sparse.lil_matrix() etc. But the matrix is in 2d.
I am wondering if there is an existing data structure for sparse 3d matrix / array (tensor) in ...
19
votes
1answer
13k views
Numpy array dimensions
I'm currently trying to learn Numpy and Python. Given the following array:
import numpy as N
a = N.array([[1,2],[1,2]])
Is there a function that returns the dimensions of a (e.g.a is a 2 by 2 ...
19
votes
9answers
10k views
Numpy array: how to find index of first occurrence of item
How can I find the index of the first occurrence of a number in a Numpy array?
Speed is important to me. I am not interested in the following answers because they scan the whole array and don't stop ...
19
votes
4answers
4k views
Python web hosting: Numpy, Matplotlib, Scientific Computing
I write scientific software in Numpy/Scipy/Matplotlib. Having developed applications on my home computer, I am now interested in writing simple web applications. Example: user uploads image or audio ...
19
votes
2answers
3k views
Use numpy array in shared memory for multiprocessing
I would like to use a numpy array in shared memory for use with the multiprocessing module. The difficulty is using it like a numpy array, and not just as a ctypes array.
from multiprocessing import ...
19
votes
3answers
294 views
Handling of duplicate indices in NumPy assignments
I am setting the values of multiple elements in a 2D array, however my data sometimes contains multiple values for a given index.
It seems that the "later" value is always assigned (see examples ...
18
votes
6answers
47k views
How do I create an empty array/matrix in NumPy?
I'm sure I must be being very dumb, but I can't figure out how to use an array or matrix in the way that I would normally use a list. I.e., I want to create an empty array (or matrix) and then add one ...
18
votes
2answers
4k views
Consistenly create same random numpy array
I am waiting for another developer to finish a piece of code that will return an np array of shape (100,2000) with values of either -1,0, or 1.
In the meantime, I want to randomly create a array of ...
18
votes
4answers
5k views
Fast check for NaN in NumPy
I'm looking for the fastest way to check for the occurrence of NaN (np.nan) in a NumPy array X. np.isnan(X) is out of the question, since it builds a boolean array of shape X.shape, which is ...
18
votes
3answers
3k views
What are the differences between numpy arrays and matrices? Which one should I use?
What are the advantages and disadvantages of each?
From what I've seen, either one can work as a replacement for the other if need be, so should I bother using both or should I stick to just one of ...
18
votes
5answers
6k views
Efficient Numpy 2D array construction from 1D array
I have an array like this:
A = array([1,2,3,4,5,6,7,8,9,10])
And I am trying to get an array like this:
B = array([[1,2,3],
[2,3,4],
[3,4,5],
[4,5,6]])
Where each ...
18
votes
2answers
4k views
Numpy ‘smart’ symmetric matrix
Is there a smart and space-efficient symmetric matrix in numpy which automatically (and transparently) fills the position at [j][i] when [i][j] is written to?
a = numpy.symmetric((3, 3))
a[0][1] = 1
...
18
votes
3answers
16k views
How can I use numpy.correlate to do autocorrelation?
I need to do auto-correlation of a set of numbers, which as I understand it is just the correlation of the set with itself.
I've tried it using numpy's correlate function, but I don't believe the ...



