electricpy.math.convolve

electricpy.math.convolve(tuple)[source]

Filter Convolution Function.

Given a tuple of terms, convolves all terms in tuple to return one tuple as a numpy array.

Parameters:
tuple : tuple of numpy.ndarray

Tuple of terms to be convolved.

Returns:

c – i.e. numpy.ndarray([ x1, x2, x3, …, xn ])

Return type:

The convolved set of the individual terms.