average for all looping

조회 수: 1 (최근 30일)
Takim Mustakim
Takim Mustakim 2022년 5월 23일
댓글: Takim Mustakim 2022년 5월 23일
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 ??

채택된 답변

David Hill
David Hill 2022년 5월 23일
No loop needed.
average_a=mean(randi(10,1,10))
  댓글 수: 3
David Hill
David Hill 2022년 5월 23일
s=0;
for i=1:10
s=s+randi(10);
end
m=s/10;
Takim Mustakim
Takim Mustakim 2022년 5월 23일
thank you bro

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by