To find the average of values in matrix

2 visualizaciones (últimos 30 días)
Sasidharan Subramani
Sasidharan Subramani el 15 de Oct. de 2021
Respondida: Star Strider el 15 de Oct. de 2021
I have 32 (131X160) matrices. I want to find the average of 5 elements in each matrices and return in (1X32) matrix.
  2 comentarios
Jan
Jan el 15 de Oct. de 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 el 15 de Oct. de 2021
They are stored as cell array in workspace and I would like to get the index (85,65) to (90,65)

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 15 de Oct. de 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.
.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by