Mean of specific rows from one column

13 vues (au cours des 30 derniers jours)
Khayroon Suleyman
Khayroon Suleyman le 8 Déc 2019
Modifié(e) : dpb le 8 Déc 2019
Hi,
I want to find the mean of specific rows from one column, for example if I want to find the mean of rows 1, 3, 5, 6 and 7. How do I do this? I have attached an image of what this column looks like.
Thank you.
  1 commentaire
dpb
dpb le 8 Déc 2019
Modifié(e) : dpb le 8 Déc 2019
mn=mean(x([1 3 5:7],n)); % where n is column number and x the array
Adjust syntax appropriately if x is in a table or struct or cell or whatever...
Don't attach images as files; use the picture icon so can see.
Better yet, attach a (smallish) sample of the data as text so folks can do something with it...

Connectez-vous pour commenter.

Réponse acceptée

Inso
Inso le 8 Déc 2019
This might work: mean(A([1, 3, 5, 6:7]))

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays 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