How to take mean of integers value?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
vimal kumar chawda
am 12 Jun. 2021
Kommentiert: vimal kumar chawda
am 13 Jun. 2021
I want to take mean of 5 column. How can I ? please find the attachment of the data.
2 Kommentare
SALAH ALRABEEI
am 12 Jun. 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
Akzeptierte Antwort
Scott MacKenzie
am 12 Jun. 2021
Bearbeitet: Scott MacKenzie
am 12 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!