1
vote
1answer
107 views

How to optimize time-stepping algorithm in python?

I have a piece of code which increments a time-step for the so-called Lorenz95 model (invented by Ed Lorenz in 1995). It's normally implemented as a 40-variable model, and displays chaotic behaviour. ...
1
vote
0answers
59 views

Can scipy.optimize.brute() optimize vector functions?

Looking through the documentation of scipy.optimize.brute(), it is not clear to me whether it supports vector functions, and if so, how the range is specified for each coordinate. For example, ...
4
votes
2answers
89 views

how to initialize fixed-size integer numpy arrays in Cython?

How can one make empty numpy arrays of type int in Cython? The following works for me for double or float arrays: # make array of size N of type float cdef np.ndarray[float, ndim=1] myarr = ...
2
votes
1answer
34 views

Extract and set thick diagonal of numpy array

I have a simple numpy question. How can I extract and consequently set a diagonal having a "thickness" equal to width with a constant value? I know the fill_diagonal function which fills the main ...
1
vote
3answers
71 views

How to represent inf or -inf in Cython with numpy?

I am building an array with cython element by element. I'd like to store the constant np.inf (or -1 * np.inf) in some entries. However, this will require the overhead of going back into Python to look ...
3
votes
1answer
94 views

How to call numpy/scipy C functions from Cython directly, without Python call overhead?

I am trying to make calculations in Cython that rely heavily on some numpy/scipy mathematical functions like numpy.log. I noticed that if I call numpy/scipy functions repeatedly in a loop in Cython, ...
1
vote
1answer
48 views

optimizing indexing and retrieval of elements in numpy arrays in Python?

I'm trying to optimize the following code, potentially by rewriting it in Cython: it simply takes a low dimensional but relatively long numpy arrays, looks into of its columns for 0 values, and marks ...
1
vote
3answers
151 views

Fast, small, and repetitive matrix multiplication in Python

I'm looking for a way to very quickly multiply together many 4x4 matrices using Python/Cython/Numpy, can anyone give any suggestions? To show my current attempt, I have an algorithm which needs to ...
5
votes
3answers
119 views

Python run generator using multiple cores for optimization

After many attempts trying optimize code, it seems that one last resource would be to attempt to run the code below using multiple cores. I don't know exactly how to convert/re-structure my code so ...
3
votes
1answer
57 views

Optimizing Boolean Compares Between Arrays with Python

I've got some Python code I'm trying to optimize. It deals with two 2D arrays of identical size (their size can be arbitrary). The first array is full of arbitrary Boolean values, and the second is ...
2
votes
2answers
95 views

Optimize finding pairs of arrays which can be compared

Definition: Array A(a1,a2,...,an) is >= than B(b1,b2,...bn) if they are equal sized and a_i>=b_i for every i from 1 to n. For example: [1,2,3] >= [1,2,0] [1,2,0] not comparable with ...
2
votes
4answers
144 views

What numerical optimizers can operate with only gradients, and no explicit value of the objective?

I have an optimization problem that involves minimizing a function whose gradient I know, but the actual value of objective function at any point is unknown. I'd like to optimize the function using ...
5
votes
3answers
192 views

Techniques for working with large Numpy arrays?

There are times when you have to perform many intermediate operations on one, or more, large Numpy arrays. This can quickly result in MemoryErrors. In my research so far, U have found that Pickling ...
0
votes
1answer
233 views

speed up motion detection code opencv python numpy [duplicate]

i have these codebook.py #http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.148.9778&rep=rep1&type=pdf import numpy as np import cv2 alpha = 5 beta = 0.95 Tdel = 80 Tadd = 140 Th= ...
4
votes
1answer
104 views

interpolating a rotation through an angle with numpy

I have a single point x = .. y = .. p = np.matrix([[x],[y]]) and I wish to rotate that point around the origin in increments of d degrees to get N = 360/d points. For example I imagine the ...
0
votes
3answers
140 views

building up lists as efficiently as possible in Python

General question: is there a preferably style to building up a list, in terms of efficiency, assuming that you have to do it within a loop? For example, is one of these options preferable to building ...
0
votes
1answer
71 views

Which scipy.optimize.minimize is least sensitive to starting location?

I'm trying to minimize a function using one of the scipy minimizers. Unfortunately my function has plateaus of equal value so minimisers get stuck there. I was wondering which of the scipy optimisers ...
3
votes
1answer
186 views

python numpy optimization n-dimensional projection

I am relatively new to python and am interested in any ideas to optimize and speed up this function. I have to call it tens~hundreds of thousands of times for a numerical computation I am doing and it ...
3
votes
1answer
111 views

vectorising linalg.eig() in numpy

I have an m*m*n numpy array (call it A) and I would like to find the eigenvalues of every submatrix A[:,:,n] in this array. I could do it with linalg.eig() in a loop with relative ease, but there ...
2
votes
1answer
72 views

Python a way to mask two array with different dtype (unit 8 and unit16)

I have 2 arrays: mask: with value 0 and 1, dtype=uint8 >>> mask array([[0, 0, 0, ..., 0, 0, 0], [0, 0, 0, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0], ..., [1, 1, ...
1
vote
1answer
477 views

Python scipy.optimize: Using fsolve with multiple first guesses

Scipy version 0.10.0 Consider the following: >>> import math >>> from scipy.optimize import fsolve >>> import numpy as np >>> def p(s, l, k, q): p = q * ...
0
votes
1answer
65 views

Python: mask a numpy.ndarray with another numpy.ndarray with elegant solution

I have two numpy.ndarray and i found a not elegant solution (using more than 4 lines code) to mask the data2 with data1. I am asking an elegant solution, saving line to do: example. data1 = ...
1
vote
1answer
64 views

Fast way to add calculated value element to multidimensional numpy array

I've got a numpy array 'image' that is a two dimensional array where each element has two components. I want to convert this to another two dimensional array where each element has three components. ...
1
vote
1answer
109 views

Numpy 1d Array CumSquare of the values

I am looking to emulate the functionality of numpy.cumsum(), except I need to capture the cumulative squares of the values. For example: I have an array that is [1,2,3,4]. I can use ...
1
vote
1answer
262 views

Python fmin too slow

i have a 3x2000 numpy array in x_data and a 1x2000 numpy array in y_data which i pass to this function regress to give me a regression line. it works fine. the problem is that i am trying to do some ...
3
votes
2answers
537 views

How to accelerate matrix multiplications in Python?

I am developing a small neural network whose parameters need a lot of optimization, so a lot of processing time. I have profiled my script with cProfile and what takes 80% of the processor time is the ...
2
votes
2answers
487 views

Integer step size in scipy optimize minimize

I have a computer vision algorithm I want to tune up using scipy.optimize.minimize. Right now I only want to tune up two parameters but the number of parameters might eventually grow so I would like ...
4
votes
4answers
235 views

fast numpy addnan

I would like to add thousands of 4D arrays element wise and accounting for nans. A simple example using 1D arrays would be: X = array([4,7,89,nan,89,65, nan]) Y = array([0,5,4, 9, 8, 100,nan]) z = ...
1
vote
1answer
1k views

Python / Scipy “invalid index to scalar variable”

I am using the Scipy optimization module, specifically fmin_tnc and fmin_l_bfgs_b. However, I am receiving the message "IndexError: invalid index to scalar variable" when using either one. What ...
4
votes
1answer
359 views

Why does my python process use up so much memory?

I'm working on a project that involves using python to read, process and write files that are sometimes as large as a few hundred megabytes. The program fails occasionally when I try to process some ...
5
votes
1answer
341 views

Fast(er) numpy fancy indexing and reduction?

I'm trying to use and accelerate fancy indexing to "join" two arrays and sum over one of results' axis. Something like this: $ ipython In [1]: import numpy as np In [2]: ne, ds = 12, 6 In [3]: i = ...
1
vote
0answers
245 views

Kuwahara filter with performance issues

On implementing an edge preserving filter similar to ImageJ's Kuwahara filter, which assigns each pixel to the mean of the area with the smallest deviation around it, I'm struggling with performance ...
7
votes
4answers
259 views

Efficiently accumulating a collection of sparse scipy matrices

I've got a collection of O(N) NxN scipy.sparse.csr_matrix, and each sparse matrix has on the order of N elements set. I want to add all these matrices together to get a regular NxN numpy array. (N ...
1
vote
0answers
251 views

PyTables Not Writing Fast Enough

I am currently having trouble trying to get PyTables to write data to itself faster. Let me explain my current scenario. Right now I have data that comes in via multicasts, a high rate of data. I ...
2
votes
2answers
273 views

fast categorization (binning)

I've a huge number of entries, every one is a float number. These data x are accesible with an iterator. I need to classify all the entries using selection like 10<y<=20, 20<y<=50, .... ...
2
votes
1answer
323 views

Least squares in a set of equations with optimize.leastsq() (Python)

I have two functions and a set of data. Both functions have the same x data and the same parameters. I want to obtain the parameters by least squares method that makes the best fit of my data. The ...
3
votes
3answers
243 views

faster way to append value

Suppose I have a big list of float values and I want to select only some of them looking at an other array: result = [] for x,s in zip(xlist, slist): if f(s): result.append(x) at the begin of ...
2
votes
1answer
234 views

How can I use numpy to calculate a series effectively?

I want to create an array in numpy that contains the values of a mathematical series, in this example the square of the previous value, giving a single starting value, i.e. a_0 = 2, a_1 = 4, a_3 = 16, ...
5
votes
2answers
878 views

Fast duplicates removal in numpy and python

Is there any fast way to obtain unique elements in numpy? I have code similar to this (the last line) tab = numpy.arange(100000000) indices1 = numpy.random.permutation(10000) indices2 = ...
5
votes
1answer
255 views

How to characterize fitness of Least Squares Estimation

I am working on a localization project and using a least squares estimation to determine the location of a transmitter. I need a way to statistically characterize the "fitness" of my solution within ...
7
votes
5answers
249 views

How can I improve the efficiency of this numpy loop

I've got a numpy array containing labels. I'd like to get calculate a number for each label based on its size and bounding box. How can I write this more efficiently so that it's realistic to use on ...
0
votes
2answers
128 views

Better way to find existence of arrays in list of arrays

I am a newbie to Python and trying out different ways to optimize and simplify my code. I have a list of arrays(necessarily in this format) initially empty, which I need to update with arrays, making ...
1
vote
1answer
415 views

Speed up this interpolation in python

I have an image processing problem I'm currently solving in python, using numpy and scipy. Briefly, I have an image that I want to apply many local contractions to. My prototype code is working, and ...
4
votes
5answers
589 views

Optimizing gravitation calculation for particles in a zero gravity 2d space

I've have created a small visualisation of particles in python. I'm caclulation the movement of particels in a 2D space with zero gravity. As each particle attracts all other particles based on the ...
-3
votes
2answers
222 views

How to speed up built in functions in numpy? [closed]

My numpy code is bottle-necked by built-in functions. How do I speed them up?
2
votes
1answer
545 views

Curve fitting a large data set

Right now, I'm trying to fit a curve to a large set of data; there are two arrays, x and y, each with 352 elements. I've fit a polynomial to the data, which works fine: import numpy as np import ...
4
votes
2answers
929 views

numpy.poly1d , root-finding optimization, shifting polynom on x-axis

it is commonly an easy task to build an n-th order polynomial and find the roots with numpy: import numpy f = numpy.poly1d([1,2,3]) print numpy.roots(f) array([-1.+1.41421356j, -1.-1.41421356j]) ...
8
votes
4answers
808 views

Efficiently generate a lattice of points in python

Help make my code faster: My python code needs to generate a 2D lattice of points that fall inside a bounding rectangle. I kludged together some code (shown below) that generates this lattice. ...
4
votes
2answers
795 views

python+numpy: efficient way to take the min/max n values and indices from a matrix

What's an efficient way, given a numpy matrix (2-d array), to return the min/max n values (along with their indices) in the array? Currently I have: def n_max(arr, n): res = [(0,(0,0))]*n for ...
12
votes
3answers
4k views

Fastest 2D convolution or image filter in Python

Several users have asked about the speed or memory consumption of image convolutions in numpy or scipy [1, 2, 3, 4]. From the responses and my experience using Numpy, I believe this may be a major ...

1 2