Clear Filters
Clear Filters

Obtain a periodic convolution matrix for 2D signal

4 views (last 30 days)
Following matlab code generates a periodic convolution matrix for 1D case. Can somebody tell me the way to generate the matrix for 2D case?
In the following, s is a 1D signal and g is a 1D kernel. I want to generate the convolution matrix when s is a 2D signal.
%h=ifft(fft(s).*fft(g));
h_mat=ifft(fft(eye(length(s))).*fft(g));
%h1 = h_mat*s;

Answers (0)

Products


Release

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!