Average Values in a matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Philip Hoskinson
le 29 Avr 2016
Réponse apportée : Azzi Abdelmalek
le 29 Avr 2016
I have a 100X225 matrix- I want to average [4,4] (or other) chunks of the matrix, and place that value in a new matrix: of a smaller dimension -> 100/4,225/4 etc
I can't seem to get the looping right.
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 29 Avr 2016
a=rand(100,225)
out=blockproc(a,[4 4],@(x) mean(mean(x.data)))
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!