Calculate Average or Mean of a matrix
2 ビュー (過去 30 日間)
古いコメントを表示
a=[5 2;5 6;8 8]; How to calculate the average of this matrix using function?
Answer is like (5+5+8/3,2+6+8/3)
0 件のコメント
採用された回答
その他の回答 (1 件)
Maneet Kaur Bagga
2022 年 7 月 6 日
Hi, Minhaz Parveez
As per my understandig you want to calculate the mean of each coloumn of the matrix. By default MATLAB fuctions work on coloumns therefore you can use the mean function directly. Please refer to the code below. Hope it helps!
X = [5 2;5 6;8 8]
mean(X)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Spline Postprocessing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!