2
votes
1answer
114 views

Shapes not matching in numpy.convolve

Error message: operands could not be broadcast together with shapes (603) (613) What should I do? Do both of the list need to be the same length? Or should I zero-pad it? Here's my code: def ...
2
votes
2answers
119 views

Nested for loop to numpy convolve

How can I improve the speed of this function? def foo(mri_data, radius): mask = mri_data.copy() ny = len(mri_data[0,:]) nx = len(mri_data[:]) for y in xrange(0, ny): for x ...
1
vote
1answer
439 views

Efficient version of matlab's deconv in python

Is there an efficient implementation of matlab's deconv in python? # Convolve z=conv(x, y) # Deconvolve y0=deconv(z, x) # Hope y~=y0 (surprisingly, googling this bring no intresting results)
4
votes
3answers
432 views

Python/NumPy: implementing a running sum (but not quite)

Given are two arrays of equal length, one holding data, one holding the results but initially set to zero, e.g.: a = numpy.array([1, 0, 0, 1, 0, 1, 0, 0, 1, 1]) b = numpy.array([0, 0, 0, 0, 0, 0, 0, ...
3
votes
2answers
326 views

What is a more efficient way to process numpy arrays based on multiple criteria?

I have written some code that for a range of years (eg. 15 years), ndimage.filters.convolveis used to convolve an array (eg. array1), then where the resulting array (eg. array2) is above a randomly ...
9
votes
2answers
3k views

Convolution computations in Numpy/Scipy

Profiling some computational work I'm doing showed me that one bottleneck in my program was a function that basically did this (np is numpy, sp is scipy): def mix1(signal1, signal2): spec1 = ...
2
votes
1answer
838 views

Finding the convolution of two histograms

The probability distribution of the sum of two random variables, x and y, is given by the convolution of the individual distributions. I'm having some trouble doing this numerically. In the following ...
2
votes
1answer
719 views

Convolution along one axis only

I have two 2-D arrays with the same first axis dimensions. In python, I would like to convolve the two matrices along the second axis only. I would like to get C below without computing the ...
5
votes
2answers
6k views

2d convolution using python and numpy

I am trying to perform a 2d convolution in python using numpy I have a 2d array as follows with kernel H_r for the rows and H_c for the columns data = np.zeros((nr, nc), dtype=np.float32) #fill ...
13
votes
4answers
3k 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, ...