Calculation the mean of a portion of a matrix

1 vue (au cours des 30 derniers jours)
Moheb Amir Adel Kamel Rafla
Moheb Amir Adel Kamel Rafla le 23 Fév 2021
Hello!
I am having trouble finding out how can I calculate the mean of all the values in a 10x10 matrix (z) which do not lie along an edge of that same matrix (z)...
Thanks in advance!

Réponse acceptée

Matt J
Matt J le 23 Fév 2021
Modifié(e) : Matt J le 23 Fév 2021
mean( z(2:end-1,2:end-1) ,'all')
  3 commentaires
Matt J
Matt J le 23 Fév 2021
Modifié(e) : Matt J le 23 Fév 2021
You're quite welcome, but please Accept-click the answer to indicate that it does what you need.
The 2:end-1 is equivalent in this context to 2:10-1 or 2:9. It as as if you had written z(2:9,2:9). See also,
Moheb Amir Adel Kamel Rafla
Moheb Amir Adel Kamel Rafla le 23 Fév 2021
Ah ok I get it! Thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by