NumPy is an extension to the Python programming language that provides a powerful and flexible N-dimensional array container, fundamental for scientific and numerical computing.

learn more… | top users | synonyms

52
votes
19answers
7k views

What can be done in R that can't be done with Python/Numpy/SciPy

I've been recently wondering about the over-proliferation of DSLs like R - and thinking whether this is good or bad. Specifically, I wonder what right has R as a stand-alone language and environment? ...
48
votes
3answers
9k 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.
43
votes
4answers
6k 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 ...
38
votes
6answers
6k views

When to choose R vs. SciPy?

What are some advantages and disadvantages to doing statistical analyses in SciPy vs. R? They seem to have been designed with opposite philosophies (plain old library vs. DSL). What are some rules ...
27
votes
5answers
945 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 ...
26
votes
9answers
6k 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 ...
24
votes
4answers
1k 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 ...
22
votes
1answer
465 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 ...
22
votes
5answers
22k 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 :)
20
votes
6answers
1k 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 ...
19
votes
4answers
655 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 ...
18
votes
4answers
1k 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 ...
17
votes
5answers
3k views

What does the Python Ellipsis object do?

While idly surfing the namespace I noticed an odd looking object called "Ellipsis", it does not seem to be or do anything special, but it's a globally available builtin. After a search I found that ...
16
votes
9answers
8k 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 ...
15
votes
6answers
9k 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 ...
15
votes
11answers
3k 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," ...
14
votes
1answer
220 views

Floating Point Exception with Numpy and PyTables

I have a rather large HDF5 file generated by PyTables that I am attempting to read on a cluster. I am running into a problem with NumPy as I read in an individual chunk. Let's go with the example: ...
14
votes
3answers
645 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 ...
14
votes
8answers
12k 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, ...
13
votes
4answers
1k views

Clustering ~100,000 Short Strings in Python

I want to cluster ~100,000 short strings by something like q-gram distance or simple "bag distance" or maybe Levenshtein distance in Python. I was planning to fill out a distance matrix (100,000 ...
13
votes
4answers
4k 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 ...
12
votes
1answer
264 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 ...
12
votes
3answers
359 views

Numpy - square root of -1 leaves a small real part

Perhaps this is an algorithmic issue, but the following piece of code numpy.power((-1+0j),0.5) produces the following output (6.1230317691118863e-17+1j) Analogous expressions e.g. ...
12
votes
2answers
1k 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 ...
12
votes
4answers
2k views

Fastest Way to generate 1,000,000+ random numbers in python

I am currently writing an app in python that needs to generate large amount of random numbers, FAST. Currently I have a scheme going that uses numpy to generate all of the numbers in a giant batch ...
12
votes
4answers
4k views

Numpy with python 3.0

NumPy installer can't find python path in the registry. Cannot install Python version 2.6 required, which was not found in the registry. Is there a numpy build which can be used with python ...
12
votes
4answers
2k views

Improving Numpy Performance

I'd like to improve the performance of convolution using python, and was hoping for some insight on how to best go about improving performance. I am currently using scipy to perform the convolution, ...
12
votes
7answers
6k views

Compile Matplotlib for Python on Snow Leopard

I've killed half a day trying to compile matplotlib for python on Snow Leopard. I've used the googles and found this helpful page (http://blog.hyperjeff.net/?p=160) but I still can't get it to ...
11
votes
1answer
139 views

setup.py for packages that depend on both cython and f2py

I would like to create a setup.py script for a python package with several submodules that depend on both cython and f2py. I have attempted to use setuptools and numpy.distutils, but have so far ...
11
votes
2answers
287 views

numpy and Global Interpreter Lock

I am about to write some computationally-intensive Python code that'll almost certainly spend most of its time inside numpy's linear algebra functions. The problem at hand is embarrassingly parallel. ...
11
votes
1answer
554 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 ...
11
votes
1answer
376 views

Why subtract a value from itself (x - x) in Python?

In NumPy functions, there are often initial lines that do checking of variable types, forcing them to be certain types, etc. Can someone explain the point of these lines in scipy.signal.square? What ...
11
votes
2answers
4k 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!
11
votes
3answers
6k 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 ...
11
votes
2answers
2k views

python.array versus numpy.array

If you are creating a 1d array in Python is there any benefit to using the NumPy package?
11
votes
8answers
6k views

Open source alternative to MATLAB's fmincon function?

Is there an open-source alternative to MATLAB's fmincon function for constrained linear optimization? I'm rewriting a MATLAB program to use Python / NumPy / SciPy and this is the only function I ...
10
votes
2answers
168 views

Python, Scipy: Building triplets using large adjacency matrix

I am using an adjacency matrix to represent a network of friends which can be visually interpreted as Mary 0 1 1 1 Joe 1 0 1 1 Bob 1 1 0 ...
10
votes
3answers
447 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 ...
10
votes
5answers
405 views

Efficient method of calculating density of irregularly spaced points

I am attempting to generate map overlay images that would assist in identifying hot-spots, that is areas on the map that have high density of data points. None of the approaches that I've tried are ...
10
votes
2answers
441 views

Python eigenvalue computations run much slower than those of MATLAB on my computer. Why?

I would like to compute the eigenvalues of large-ish matrices (about 1000x1000) using Python 2.6.5. I have been unable to do so quickly. I have not found any other threads addressing this question. ...
10
votes
3answers
746 views

multithreaded blas in python/numpy

I am trying to implement a large number of matrix-matrix multiplications in python. Initially, I assumed that numpy would use automatically my threaded blas libraries since I built it against those ...
10
votes
5answers
562 views

How to correlate two time series with gaps and different time bases?

I have two time series of 3D accelerometer data that have different time bases (clocks started at different times, with some very slight creep during the sampling time), as well as containing many ...
10
votes
4answers
880 views

numpy: learning resources

What book(s) or other resources for learning numpy would you recommend to someone who has lots of experience coding in Python and a fair amount of experience working with both MATLAB and R?
10
votes
7answers
916 views

No speed gains from Cython

I am trying to define a function that contains an inner loop for simulating an integral. The problem is speed. Evaluating the function once can take up to 30 seconds on my machine. Since my ...
10
votes
2answers
687 views

Are NumPy's math functions faster than Python's?

i have a function defined by a combination of basic math functions (abs, cosh, sinh, exp ...) I was wondering if it makes a difference (in speed) to use, for example: numpy.abs() instead of abs()?
10
votes
2answers
4k views

Inverse Distance Weighted (IDW) Interpolation with Python

The Question: What is the best way to calculate inverse distance weighted (IDW) interpolation in Python, for point locations? Some Background: Currently I'm using RPy2 to interface with R and it's ...
10
votes
3answers
4k 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]]) ...
10
votes
5answers
998 views

Python: Analysis on CSV files 100,000 lines x 40 columns

I have about a 100 csv files each 100,000 x 40 rows columns. I'd like to do some statistical analysis on it, pull out some sample data, plot general trends, do variance and R-square analysis, and plot ...
10
votes
1answer
1k 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 ...
10
votes
2answers
9k 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 ...

1 2 3 4 5 41