How to take mean of integers value?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vimal kumar chawda
le 12 Juin 2021
Commenté : vimal kumar chawda
le 13 Juin 2021
I want to take mean of 5 column. How can I ? please find the attachment of the data.
2 commentaires
SALAH ALRABEEI
le 12 Juin 2021
Use mean(A,dir) where A is ur matrix and dir is the direction in which u r averaging. dir takes 1,or2,or3 etc values
Réponse acceptée
Scott MacKenzie
le 12 Juin 2021
Modifié(e) : Scott MacKenzie
le 12 Juin 2021
You need to use braces because your data are in a table:
mean(LSinclination{:,5})
If it's just the integer values you want the mean of (as suggested in your question title), then
intLogical = mod(LSinclination{:,5},1)==0
mean(LSinclination{intLogical,5});
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!