How to find the mean of data contained in a column of a table?
18 ビュー (過去 30 日間)
古いコメントを表示
i want the mean of the values stored in a column of a table. how can i do that?
For example :
1 11
2 22
3 33
4 44
5 55
is the column data. how to find mean of this both columns and store them in a variable.
0 件のコメント
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2014 年 1 月 28 日
編集済み: Azzi Abdelmalek
2014 年 1 月 28 日
A=[1 11; 2 22;3 33;4 44;5 55]
out=mean(A)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!