how to reduce the size of a matrix?
4 次查看(过去 30 天)
显示 更早的评论
Suppose I have 4 by 4 matrix or of any size and I want to make it a 2by2 matrix by taking the average of the sub matrixes.
0 个评论
采纳的回答
Image Analyst
2022-6-12
m = randi(9, 4, 4) % Sample data.
sums = conv2(m, ones(2,2)/4, 'same');
means = sums(1:2:end, 1:2:end)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!