NumPy is a scientific and numerical computing extension to the Python programming language.

learn more… | top users | synonyms

0
votes
2answers
20 views

Multiple copies of array returned by numpy.arange?

I'm trying to fill a numpy array with a list of all of the x-coordinates of a pixel-based image. So basically, an n x m image would have n 1's, n 2's, and so on up to n m's. Is there a simple way to ...
0
votes
0answers
6 views

Test failed in Numpy pre-installed with Mac OS X

I am using the python 2.7 and numpy 1.6 pre-installed in Mac OSX. The download page advised to test it with nose after installation to see if the installation went correctly, so I did import numpy as ...
0
votes
1answer
15 views

Python Pandas find non zero indices

Hi I'm trying to use pandas to tidy up a DataFrame. It is imported from a spreadsheet and has some empty rows and columns. I thought I could use df.apply(numpy.nonzero(),axis=1) and ...
5
votes
1answer
34 views

Why does numpy.r_ use brackets instead of parentheses?

Numpy.r_, .c_ and .s_ are the only Python functions I've come across that take arguments in square brackets rather than parentheses. Why is this the case? Is there something special about these ...
3
votes
3answers
398 views

Multiplying Numpy/Scipy Sparse and Dense Matrices Efficiently

I'm working to implement the following equation: X =(Y.T * Y + Y.T * C * Y) ^ -1 Y is a (n x f) matrix and C is (n x n) diagonal one; n is about 300k and f will vary between 100 and 200. As part of ...
2
votes
1answer
40 views

Scipy Sparse Matrix - Dense Vector Multiplication Performance - Blocks vs Large Matrix

I have a number of scipy sparse matrices (currently in CSR format) that I need to multiply with a dense numpy 1D vector. The vector is called G: print G.shape, G.dtype (2097152,) complex64 Each ...
19
votes
3answers
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 ...
1
vote
1answer
43 views

python code for multiple ode

I want to write a fourth order Adams Bashforth to solve the system. And the following is what I have : the system is in the following link: system we have def AdamsBashforth4( f, x0, t ): """ ...
3
votes
1answer
47 views

What's an efficient way to find if a point lies in the convex hull of a point cloud?

I have a point cloud of coordinates in numpy. For a high number of points, I want to find out if the points lie in the convex hull of the point cloud. I tried pyhull but I cant figure out how to ...
0
votes
1answer
23 views

finding colors in Image and redraw on second image(using numpy)

I am trying to find specific colors(or more likely ranges of colors) in a picture and redraw the coordinates on a second picture for further investigation. Since I read a lot about how great numpy is, ...
0
votes
1answer
49 views

setup odes in python

how to setup the following odes with the corresponding initial conditions in python? x'(t) =x(t) - y(t) - e^t y'(t) =x(t) + y(t) + 2e^t with x(0)= -1 and y(0)= -1 and 0 <= t <= 4 ...
0
votes
0answers
20 views

fit an ellipse through points

Using opencv for python I need to fit an ellipse (using cv2.fitEllipse) to the array of points returned by cv.FindCornerSubPix (here named 'features'). I have seen numerous examples of this on the ...
1
vote
1answer
43 views

What is the best way to create a moving window in 2D array ond order pixels

I'm very new to Python, and need do to a bit of tricky 2D array manipulation with it. I'm not sure of the best way to go about it. Basically, I start with an array of values between 0 and 1. I need ...
1
vote
2answers
1k views

Efficient evaluation of a function at every cell of a Numpy array

Given a numpy array A, what is the fastest/most efficient way to apply to every of each cells the same function -f- ? Suppose that we will assign to A(i,j) the f(A(i,j)). The function, -f- has not ...
1
vote
3answers
51 views

numpy array slicing unxpected results

I don't understand the behavior below. numpy arrays can generally be accessed through indexing, so [:,1] should be equivalent to [:][1], or so I thought. Could someone explain why this is not the ...
1
vote
1answer
26 views

Least Squares Minimization Complex Numbers

I've been using my Matlab, but it's my vision to eventually switch over to doing all of my analysis in Python since it is an actual programming language and a few other reasons. The recent problem ...
1
vote
2answers
58 views

grouping data in arrays (python)

I'm trying to make a nice ordered way of grouping objects in an array. Now I've tried the following, but it gives me an error. Any tips? #body: mass, [x,y], [vx,vy], [ax, ay] bodies = ...
0
votes
0answers
37 views

Issue with gradient calculation in a Neural Network (local minima at 10%)

Hi I am having an issue with my calculation of checking the gradient when implementing a neural network in python using numpy. I am using mnist dataset to try and trying to using mini-batch gradient ...
1
vote
1answer
841 views

Compiling numpy with OpenBLAS integration

I am trying to install numpy with OpenBLAS , however I am at loss as to how the site.cfg file needs to be written. When the installation procedure was followed the installation completed without ...
0
votes
1answer
28 views

Appendng to a numpy array in constant time [duplicate]

How do you insert a new item into a numpy array in constant time. A python list has an append method which does this, what is the equivalent in numpy. It looks like numpy.append returns a copy of the ...
0
votes
1answer
14 views

Use numpy in python3 - Ubuntu

I'm trying to use numpy with python3 in Ubuntu 12.04. The command python3 in the terminal returns: Python 3.2.3 (default, Oct 19 2012, 20:13:42) [GCC 4.6.3] on linux2 When I try to import numpy I ...
1
vote
2answers
39 views

How to read complex numbers from file with numpy?

I need to read columns of complex numbers in the format: # index; (real part, imaginary part); (real part, imaginary part) 1 (1.2,0.16) (2.8,1.1) 2 (2.85,6.9) (5.8,2.2) numpy seems great for ...
1
vote
3answers
37 views

slicing numpy array along an arbitrary dimension

say that I have a (40,20,30) numpy array and that I have a function that after some work will return half of the input array along a selected input axis. Is there an automatic way to do so ? I would ...
1
vote
0answers
30 views

How to display progress of scipy.optimize function?

I use scipy.optimize to minimize a function of 12 arguments. I started the optimization a while ago and still waiting for results. Is there a way to force scipy.optimize to display its progress ...
1
vote
1answer
39 views

How can I assign/update subset of tensor shared variable in Theano?

When compiling a function in theano, a shared variable(say X) can be updated by specifying updates=[(X, new_value)]. Now I am trying to update only subset of a shared variable: from theano import ...
0
votes
1answer
270 views

NumPyPy vs Theano?

I am wondering: do these two projects basically have the same goal -- to speed up numerical work in Python? What are the similarities and differences? I know that Theano does not aim to re-implement ...
7
votes
2answers
388 views

Theano fails due to NumPy Fortran mixup under Ubuntu

I installed Theano on my machine, but the nosetests break with a Numpy/Fortran related error message. For me it looks like Numpy was compiled with a different Fortran version than Theano. I already ...
2
votes
4answers
97 views

Read values from txt with rows of different sizes into a single numpy array

I need to read a file that has a structure like: 1 2 3 4 5 6 7 8 9 10 11 22 13 14 15 16 17 18 19 20 21 22 23 24 I need to read this file in a single array = [ 1,2,3, ... , 23, 24] How to do ...
-1
votes
1answer
51 views

Convert Str to Float in csv

I'm running into a little error where I open up a csv file set up as 10 columns by 100 rows. I want to first convert all the numbers in it from str into floats. Then turn each column of numbers into ...
6
votes
3answers
60 views

find the length of the longest consecutive series of numbers [duplicate]

I have a numpy array like this [1,1,1,-1,-1,1,-1,1,1,-1,-1,-1,1,-1] I'd like to find the length of the longest consecutive series of either 1s or -1s. In the example, it should be 3
1
vote
1answer
87 views

Generating a dense matrix from a sparse matrix in python

I have a Sqlite database that contains following type of schema: termcount(doc_num, term , count) This table contains terms with their respective counts in the document. like (doc1 , term1 ,12) ...
5
votes
1answer
39 views

Interval average of 1D data

I have two 1D arrays, one for measured data and the other one for location. For example, the measured data could be temperature and the other array the heights of the measurement: temp = ...
4
votes
4answers
1k views

Numpy: How to check if array contains certain numbers?

For example: I have a = array([123, 412, 444]) and b = array([123, 321]) I want to know if a contains all the elements in b. Is there a simple operation for this? In this case that would not be true ...
1
vote
1answer
21 views

Check if all of the elements in one numpy array exist in a second numpy array

Does anyone have a more numpy-like way of accomplishing this: def uneven_compare(array1, array2): return numpy.all([numpy.any(array2 == elem) for elem in array1]) I just want to check if all of ...
0
votes
1answer
40 views

pandas resample doesn't work with numpy 1.7

This code worked on my other computer with NumPy 1.6: import pandas as pd from pandas import DataFrame import numpy as np ...
1
vote
1answer
19 views

numpy.loadtxt, ValueError: could not convert string to float

This is sample from large csv file: 6.1;6.1;7.2;8.9;5.0; 8.9;10.0;8.9;6.1;5.0; If I try to read it to numpy array with np.loadtxt('test.csv', delimiter=';') I get: ValueError: could not convert ...
1
vote
1answer
86 views

Make array iteration faster using views

If I have a large numpy array x I can speed up many iterative operations, like instead of writing x[1:-1] = 5*x[1:-1] I can use x[1:-1] *= 5 which is faster, because in contrast to the first ...
6
votes
3answers
6k views

Selecting rows from numpy ndarray

I want to select only certain rows from a numpy array based on the value in the second column. For example, this test array has integers from 1 to 10 in second column. >>> test = ...
0
votes
1answer
28 views

Numpy inverse mask

I want to inverse the true/false value in my numpy masked array. So in the example below i don't want to mask out the second value in the data array, I want to mask out the first and third value. ...
54
votes
11answers
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 ...
7
votes
2answers
55 views

Indexes of fixed size sub-matrices of numpy array

I am implementing an algorithm which requires me to look at non-overlapping consecutive submatrices within a (strictly two dimensional) numpy array. eg, for the 12 by 12 >>> a = ...
3
votes
2answers
98 views

Is convolution slower in Numpy than in Matlab?

Convolution in Matlab appears to be twice as fast as convolution in Numpy. Python code (takes 19 seconds on my machine): import numpy as np from scipy import ndimage import time img = ...
0
votes
2answers
40 views

Performance issues using nested for loops for image processing [closed]

I have code, shown here, that makes a computer generated hologram given an initial image. The image that the program is currently using can be found in the in the image directory. My program takes ...
0
votes
0answers
21 views

How to read and write 24-bit wav file using scipy or common alternative?

Frequently, wav files are or need to be 24-bit yet I do not see a way to write or read 24-bit wav files using scipy module. The documentation for wavfile.write() states that the resolution of the wav ...
1
vote
1answer
14 views

Numpy delete repeated rows

I simply need to remove the rows that are repeated in an array but maintain one of them, I can't use unique because I need to maintain the order. Example 1 a234 125 1 a123 265 1 a234 125 1 a145 167 1 ...
3
votes
2answers
45 views

Numpy to check if a solution exists such that each row is < 0?

Consider the following code X=np.matrix([[1,-1,1],[-1,0,1]]) print X.T ''' [[ 1 -1] [-1 0] [ 1 1]] ''' I want to check if a solution exists where the transpose has a <0 solution. For ...
1
vote
1answer
30 views

How to iterate over the first dimension of each operand using nditer?

Given: import numpy as np a = np.arange(6) b = np.arange(24).reshape(6,4) I want something like this: for i in xrange(len(a)): v1 = a[i] v2 = b[i,...] but I can't figure out how to do it ...
0
votes
2answers
37 views

inverse of FFT not the same as original function

I don't understand why the ifft(fft(myFunction)) is not the same as my function. It seems to be the same shape but a factor of 2 out (ignoring the constant y-offset). All the documentation I can see ...
0
votes
0answers
50 views

how to get index in numpy using ufunc

numpy is great,and ufunc and use to calculate on every item. I want to calculate some data on the item,the calculate based on the neighbor of the item,so I want to get the item value and the ...
-2
votes
3answers
67 views

Converting plain text list into array in python program [closed]

The TextFile.txt file contains: 1 one 2 two 3 three 4 four 5 five The python program: file = open ("x.txt", "r") for item in file: x = item.split ('\s') import numpy as np ...

1 2 3 4 5 117