How to take mean of integers value?
1 回表示 (過去 30 日間)
古いコメントを表示
vimal kumar chawda
2021 年 6 月 12 日
コメント済み: vimal kumar chawda
2021 年 6 月 13 日
I want to take mean of 5 column. How can I ? please find the attachment of the data.
2 件のコメント
SALAH ALRABEEI
2021 年 6 月 12 日
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
採用された回答
Scott MacKenzie
2021 年 6 月 12 日
編集済み: Scott MacKenzie
2021 年 6 月 12 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!