Problem 2106. Compute circular convolution
In signal processing, we usually encounter the circular convolution case. Compute it here using the two input sequences (denoted as row vectors) x(n) and h(n) with the same length N. Output the circular convolution.
Example
x(n) = [1 2 0 1] h(n) = [2 2 1 1]
The result should be
y(n) = [6 7 6 5]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers30
Suggested Problems
-
2782 Solvers
-
6693 Solvers
-
294 Solvers
-
Create a vector whose elements depend on the previous element
750 Solvers
-
Replace every 3rd element in a vector with 4
258 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!