format short
datasave=[];
for i=1:10
a=randi(10);
datasave=[i a];
end
display(a)
how to looking for average a for all loop i ??

 Risposta accettata

David Hill
David Hill il 23 Mag 2022
No loop needed.
average_a=mean(randi(10,1,10))

3 Commenti

Takim Mustakim
Takim Mustakim il 23 Mag 2022
i using looping with my real script and i want to looking for average for all looping
s=0;
for i=1:10
s=s+randi(10);
end
m=s/10;
Takim Mustakim
Takim Mustakim il 23 Mag 2022
thank you bro

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Prodotti

Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by