Smoothing a 2d matrix

6 views (last 30 days)
Haythem Zouabi
Haythem Zouabi on 11 Nov 2020
Answered: Sibi on 17 Dec 2020
Hello,
I have a 2d matrix. I need to smooth this matrix by filtering small gradient and keep the highest gradient?
Thanks,

Answers (1)

Sibi
Sibi on 17 Dec 2020
x=randi(10,2,3);
c = smooth(x(:));
y= reshape(c,height(x),width(x))

Community Treasure Hunt

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

Start Hunting!