maths.convolve_1d¶
Classes¶
1D discrete convolution between two linear signals |
|
A discrete representation of a signal as a n-dimensional vector |
Module Contents¶
- class maths.convolve_1d.DiscreteConvolve1D¶
1D discrete convolution between two linear signals
>>> s1 = Signal([1,2,3,4,5]) >>> s2 = Signal([1,-1,2,-3]) >>> DiscreteConvolve1D(s1,s2) DiscreteConvolve1D(kern=Signal(signal=[1, 2, 3, 4, 5], n=5), sig=Signal(signal=[1, -1, 2, -3], n=4))