To find the average of values in matrix

7 vues (au cours des 30 derniers jours)
Sasidharan Subramani
Sasidharan Subramani le 15 Oct 2021
I have 32 (131X160) matrices. I want to find the average of 5 elements in each matrices and return in (1X32) matrix.
  2 commentaires
Jan
Jan le 15 Oct 2021
How are the 32 matrices stored? As fields of a struct, as cell array, as numerical 3D array?
Which 5 elements are you interested in? How are they given? As indices, logical index or values?
Sasidharan Subramani
Sasidharan Subramani le 15 Oct 2021
They are stored as cell array in workspace and I would like to get the index (85,65) to (90,65)

Connectez-vous pour commenter.

Réponses (1)

Star Strider
Star Strider le 15 Oct 2021
Try something like this (assuming that they are stored as elements of a cell array similar to these) —
C = {randn(131,160), randn(131,160), randn(131,160), randn(131,160), randn(131,160)};
Cm = cellfun(@(x)mean(x(85:90,65)), C)
Cm = 1×5
-0.2017 -0.0349 0.2242 0.1696 0.0868
Experiment with the actual cell array to get differnt results.
.

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!

Translated by