Calculate Average or Mean of a matrix
3 views (last 30 days)
Show older comments
Minhaz Parveez
on 24 Sep 2016
Answered: Maneet Kaur Bagga
on 6 Jul 2022
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 Comments
Accepted Answer
More Answers (1)
Maneet Kaur Bagga
on 6 Jul 2022
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 Comments
See Also
Categories
Find more on Spline Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!