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

learn more… | top users | synonyms

3
votes
1answer
47 views

Create new numpy array-scalar of flexible dtype

I have a working solution to my problem, but when trying different things I was astounded there wasn't a better solution that I could find. It all boils down to creating a single flexible dtype value ...
1
vote
1answer
44 views

Building 64-bit Python extensions with f2py on Windows

I'm attempting to build a Python extension from Fortran source using Numpy's f2py.py script. I'm following the steps from http://www.scipy.org/F2PY_Windows (web archive). My system is Windows 7 ...
1
vote
2answers
62 views

numpy np.array versus np.matrix (performance)

often when working with numpy I find the distinction annoying - when I pull out a vector or a row from a matrix and then perform operations with np.arrays there are usually problems. to reduce ...
4
votes
2answers
50 views

floats in NumPy structured array and native string formatting with .format()

Can anyone tell me why this NumPy record is having trouble with Python's new-style string formatting? All floats in the record choke on "{:f}".format(record). Thanks for your help! In [334]: ...
2
votes
2answers
20 views

How can I broadcast between 1D and nD arrays to obtain a (1+n)D array output?

I have an n-dimensional ndarray z0, and a 1-dimensional ndarray za. The sizes don't correspond to each other in any way. I'd like to be able to create a new n+1-dimensional array, z, where ...
1
vote
0answers
14 views

Rehaped views in Parallel Colt

In numpy, there is a flatten operation which allows you to, for example, flatten a m x n matrix down to an array of mn elements, and a reshape operations which goes in the opposite direction. Much of ...
5
votes
2answers
94 views

Can I trick numpy.histogram into behaving like numpy.bincount?

So, I have lists of words and I need to know how often each word appears on each list. Using ".count(word)" works, but it's too slow (each list has thousands of words and I have thousands of lists). ...
3
votes
1answer
42 views

How can I use Scipy to do a memory efficient distance transform operation?

I am working on a project in Python using GDAL to work on GIS rasters. These rasters or images can get rather large so I usually use memory mapping in Numpy to load them. Currently I want to do a ...
2
votes
1answer
33 views

How to read a float from a raw binary file written with numpy's tofile()

I am writing a float32 to a file with numpys tofile(). float_num = float32(3.4353) float_num.tofile('float_test.bin') It can be read with numpys fromfile(), however that doesn't suite my need and i ...
3
votes
1answer
58 views

Merging two arrays under numpy

Using Numpy, I would like to achieve the result below, given b and c. I have looked into stacking functions, but I cannot get it to work. Could someone please help? import numpy as np ...
2
votes
2answers
99 views

Object oriented vs vector based programming [closed]

I am torn between object oriented and vector based design. I love the abilities, structure and safety that objects give to the whole architecture. But at the same time, speed is very important to me, ...
3
votes
1answer
52 views

Getting a N-element vector of values evenly spaced from -X to X

In Matlab, one can do N=1024; X=1; dx=2*X/(N-1); x=-X:dx:X; and one has an array x including -1 and 1 as endpoints. The equivalent in numpy: from numpy import r_ N=1024 X=1 dx=2*X/N x=r_[-X:X:dx] ...
2
votes
1answer
76 views

Any way to solve a system of coupled differential equations in python?

I've been working with sympy and scipy, but can't find or figure out how to solve a system of coupled differential equations (non-linear, first-order). So is there any way to solve coupled ...
0
votes
1answer
43 views

Pixel color inside a contour using numpy

I am trying to constitute a numpy array containing the color hue of each pixel within a contour, using opencv 2.4. I have extracted the coordinates of all point included inside the contour using ...
0
votes
0answers
32 views

Lists of arrays for APIs needing flexible data arguments using numpy/scipy

I'm currently trying to improve the API for the scikits.bootstrap bootstrap confidence interval estimation package. The basic function, ci, takes as input a data array and a statistic function to run ...
1
vote
2answers
50 views

cython running slower than numpy for distance calculation

I'm trying to learn cython; however, I must be doing something wrong. This little piece of test code is running about 50 times slower than my vectorized numpy version of it. Can someone please tell me ...
2
votes
1answer
47 views

How to substitute symbol for matrix using symPy and numPy

I'm trying to substitute two symbols in my equation for the matrix form of each of them. I created a commutator function which formed my expression: t, vS, = sy.symbols('t, vS', commutative = ...
1
vote
1answer
45 views

NumPy odeint output extra variables

What is the easiest way to save intermediate variables during simulation with odeint in Numpy? For example: def dy(y,t) x = np.rand(3,1) return y + x.sum() sim = ...
1
vote
1answer
37 views

scipy: Evaluate the most likely value and confidence of a bayesian network

I have a bayesian network of two prior distributions (A and B) and one posterior distribution (C|A,B). How, in scipy, would I find the most likely value of C? Secondarily, how would I calculate the ...
2
votes
1answer
63 views

Meaning of 0x and \x in python hex strings?

I'm doing some binary operations which are often shown as hex-es. I have seen both the 0x and \xas prefixes. In which case is which used?
1
vote
2answers
37 views

Using the heapq function 'nlargest' to find the peaks of an FFT and their corresponding frequencies in python

I am using an FFT to look at the distortion I have on an output signal for an IC tester i am designing. I have two arrays, one containing the sampled frequencies, and the other containing the ...
2
votes
2answers
87 views

Optimising iterative loop

I'm gradually moving from Matlab to Python and would like to get some advice on optimising an iterative loop. This is how I am currently running the loop, and for info I've included the code that ...
3
votes
2answers
38 views

Numpy array assignment inside class

I am using Python 3.2.3 with NumPy 1.6.1. I would be very grateful if someone could explain me what does NumPy do when I try to access (in two different ways) an element of a NumPy array. Code: ...
0
votes
3answers
83 views

python code not running

I am working with this tutorial. On this example: import csv as csv import numpy as np csv_file_object = csv.reader(open('train.csv', 'rb')) header = csv_file_object.next() data=[] for row in ...
4
votes
2answers
59 views

Pythonic way to print a multidimensional complex numpy array to a string

I have a 3D complex numpy array defined like this: > import numpy as np > a = np.random.rand(2,3,4) + np.random.rand(2,3,4) * 1j > a array([[[ 0.40506245+0.68587874j, ...
1
vote
1answer
68 views

Python WAV “TypeError: data type not understood” error

I've had a problem reading a .wav file using Python. I want to read the amplitude and sampling rate of the file. I tried reading the file using the following code: import os folder = os.getcwd() + ...
0
votes
2answers
78 views

How to perform precise calculations in Python, regardless of input types?

I need to make computations in the highest possible precision, regardless if the arguments passed are integers, floats or whatever numbers. One way I can think of this is: import numpy as np def ...
0
votes
1answer
22 views

numpy#genfromtxt raise an IOError while the txt file is empty

Then genfromtxt method of numpy load an ndarray from a text file. However, if the text file is empty, the method would raised an IOError while I expected an empty ndarray: IOError: End-of-file ...
0
votes
2answers
24 views

Only one value in file, numpy.loadtxt() just returns the value instead of array?

When only one value in file, numpy.loadtxt() just returns the value instead of array, how to avoid? Thank you in advance! e.g. there's only 12345 in a file 12345.6 numpy.loadtxt() returns ...
1
vote
3answers
61 views

Python linspace limits from two arrays

I have two arrays: a=np.array((1,2,3,4,5)) b=np.array((2,3,4,5,6)) What I want is to use the values of a and b for the limits of linspace e.g. c=np.linspace(a,b,11) I get an error when I use ...
1
vote
2answers
59 views

Remove elements from the array

I have two arrays, that I am trying to combine using concatenate: a = np.array(([1,2], [5,6], [9,10])) b = np.array(([3,4], [7,8], [11,12], [13,14], [17,18])) c = np.concatenate((a,b), 1) This wont ...
0
votes
1answer
57 views

Numpy, how to convert a 2D array to 3D (by grouping cols to 2 list)

E.g. Before converting array([[0, 0, 0], [0, 1, 1], [1, 0, 1], [1, 1, 0]]) After converting array([[[0, 0], [0]], [[0, 1], [1]], [[1, 0], [1]], [[1, 1], ...
4
votes
2answers
101 views

Matplotlib figure changes for publication after making the figure

I have been running into the problem of generating publication 'perfect' images in Matplotlib (i.e changing the fontsize, marker size, figuresize, number of ticks etc...). Essentially, I want to do ...
1
vote
1answer
44 views

Turning selected pixels to black based on an HSV hue range

This snippet of code is part of a program that turns pixels to black in an opencv image based on an HSV hue range (here, 180-250). Does somebody happen to understand why the code below raises the ...
1
vote
1answer
26 views

Mask One 2D Numpy Array By Argmax Along Axis Of Another Array

I have a 2D numpy array that I need to take the max of along a specific axis. I then need to later know which indexes were selected for this operation as a mask for another operation which is only ...
3
votes
1answer
16 views

Skip row in genfromtxt

I have the following table: 2M00251602+5422547 7.180 9.000 2.200 #2M00255540+5749320 4.420 5.200 1.600 2M00274401+5330504 4.400 ...
2
votes
3answers
45 views

Form a big 2d array from multiple smaller 2d arrays

The question is the inverse of this question. I'm looking for a generic method to from the original big array from small arrays: array([[[ 0, 1, 2], [ 6, 7, 8]], [[ 3, 4, ...
3
votes
3answers
64 views

How to convert from boolean array to int array in python

I have a Numpy 2-D array in which one column has Boolean values i.e. True/False. I want to convert it to integer 1 and 0 respectively, how can I do it? E.g. my data[0::,2] is boolean, I tried ...
0
votes
0answers
28 views

Pypng write produces a blank/black image

I'm trying to run the exnumpy.py script from: http://pypng.googlecode.com/svn/trunk/code/exnumpy.py. I've supplied it with multiple pictures and have tried running it on multiple computers, but every ...
1
vote
1answer
48 views

Palette method using numpy

I am trying to apply the numpy palette method to an opencv processed video (references: this question and this tutorial ). I aim at replacing all frame pixels of a certain color range by another. The ...
3
votes
1answer
64 views

Is there a way to flatten a numpy array in diagonal order efficiently?

I am looking for an efficient way (preferably a vectorized fast built-in function) to flatten a numpy array in diagonal order. For example: A=np.array([[1,2,3],[4,5,6],[7,8,9]]) ...
3
votes
0answers
61 views

Is there any documentation of numpy numerical stability?

I looked around for some documentation of how numpy/scipy functions behave in terms of numerical stability, e.g. are any means taken to improve numerical stability or are there alternative stable ...
-1
votes
0answers
44 views

Python Scipy gaussian_filter? [closed]

size = (512, 512) h = -0.5 sigma = 1 activity = numpy.random.random(size) + h excitement = numpy.zeros(size) gaussian_filter(activity, sigma, 0, excitement, "wrap") excitement - will be ...
1
vote
2answers
25 views

Select range of rows from record ndarray

I obtained a NumPy record ndarray from a CSV file using data = matplotlib.mlab.csv2rec('./data.csv', delimiter=b',') The data set is structured as: date,a0,a1,a2,a3, b0, b1, b2, b3,[...], b9 ...
0
votes
1answer
84 views

'numpy.float64' object is not iterable

I'm trying to iterate an array of values generated with numpy.linspace: slX = numpy.linspace(obsvX, flightX, numSPts) slY = np.linspace(obsvY, flightY, numSPts) for index,point in slX: yPoint = ...
1
vote
0answers
45 views

Video Manipulation

Before a couple days ago I had never used OpenCV or done any video processing. I've been asked to computationally overlay a video based upon some user inputs and build a new video with the overlays ...
4
votes
5answers
62 views

Slice 2d array into smaller 2d arrays

Is there a way to slice a 2d array in numpy into smaller 2d arrays? Example [[1,2,3,4], -> [[1,2] [3,4] [5,6,7,8]] [5,6] [7,8]] So I basically want to cut down a 2x4 array ...
6
votes
4answers
67 views

Is there a MATLAB accumarray equivalent in numpy?

I'm looking for a fast solution to MATLAB's accumarray in numpy. The accumarray accumulates the elements of an array which belong to the same index. An example: a = np.arange(1,11) # array([ 1, 2, ...
0
votes
4answers
62 views

Select values in arrays

I have two arrays of the same length: x = [2,3,6,100,2,3,5,8,100,100,5] y = [2,3,4,5,5,5,2,1,0,2,4] I selected the position where x==100 in this way: How is possible to have the value of y where ...
1
vote
1answer
77 views

Plot a graph in NetworkX

I try to plot a simple graph in networkx, but this error message appears: RuntimeError: module compiled against API version 6 but this version of numpy is 4 Traceback (most recent call last): File ...

1 2 3 4 5 122