how to reduce the size of a matrix?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DARSHAN KUMAR BISWAS
am 12 Jun. 2022
Beantwortet: Image Analyst
am 12 Jun. 2022
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 Kommentare
Akzeptierte Antwort
Image Analyst
am 12 Jun. 2022
m = randi(9, 4, 4) % Sample data.
sums = conv2(m, ones(2,2)/4, 'same');
means = sums(1:2:end, 1:2:end)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!