how to find average values of answers
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ali Noori
il 21 Ago 2015
Commentato: Ali Noori
il 21 Ago 2015
%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
0 Commenti
Risposta accettata
Purushottama Rao
il 21 Ago 2015
b=zeros(1,5)
for a=1:5
b(a)=2*a+1;
end
k=mean(b);
2 Commenti
Purushottama Rao
il 21 Ago 2015
If you want to diplay every time avg, move mean commnd inside the for loop
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!