how to find average values of answers

2 次查看(过去 30 天)
%For example, if you write this code for a=1:5; b = 2*a + 1 end the answers are >> b =
3
b =
5
b =
7
b =
9
b =
11
I want to calculate the mean values for these answers
b average = (3 + 5+ 7+ 9+11) / 5 = 7

采纳的回答

Purushottama Rao
Purushottama Rao 2015-8-21
b=zeros(1,5)
for a=1:5
b(a)=2*a+1;
end
k=mean(b);
  2 个评论
Purushottama Rao
Purushottama Rao 2015-8-21
If you want to diplay every time avg, move mean commnd inside the for loop
Ali Noori
Ali Noori 2015-8-21
ok thanks, but ur code will give vector answer for each value of b

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by