Tagged Questions
0
votes
1answer
93 views
ComplexWarning when calling convolve2d() in SciPy, why?
When I run
from scipy.signal import convolve2d
convolve2d([[2, 2, 2], [1, 2, 3], [0, 1, 0]], [[0.5], [0.5]], 'valid')
I get
Warning (from warnings module):
File "C:\Program Files\Python ...
3
votes
3answers
196 views
Python SciPy convolve vs fftconvolve
I know generally speaking FFT and multiplication is usually faster than direct convolve operation, when the array is relatively large. However, I'm convolving a very long signal (say 10 million ...
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)
2
votes
1answer
1k views
convolution of sinus signal with rectangular pulse
I would like to perform the operation of convolution of sinus signal and
rectangular pulse in scipy. I convolved sinus signal with cosinus signal
and plotted that on the graph,
but I would like to ...
8
votes
2answers
578 views
Artefacts from Riemann sum in scipy.signal.convolve
Short summary: How do I quickly calculate the finite convolution of two arrays?
Problem description
I am trying to obtain the finite convolution of two functions f(x), g(x) defined by
To achieve ...
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
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 ...
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, ...