taking average of single columns and rows of matrix using for loop

3 次查看(过去 30 天)
I need help using for loops to take the average of the numbers contained in single columns and rows of a matrix. How would I go about doing this?

采纳的回答

KSSV
KSSV 2018-5-3
A = rand(10,1) ;
N = numel(A) ; % number of elements
mu = 0 ; % initialize mean to zero
for i = 1:N
mu = mu+A(i) ;
end
mu = mu/N ;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by