Convolution Calculator
Discrete linear convolution of two sequences — y[n] = Σ x[k] · h[n−k].
How to Use
- Enter two sequences separated by commas or spaces.
- Result has length M + N − 1.
Input sequences
Result y[n] = x * h
Formula
Discrete convolution
y[n] = Σk x[k] · h[n−k]
Length
len(y) = len(x) + len(h) − 1
Last updated: