필터 지우기
필터 지우기

how to use randi function with while loop?

조회 수: 2 (최근 30일)
joethomas4444
joethomas4444 2016년 3월 20일
답변: Star Strider 2016년 3월 20일
Hey, I cant seem to figure out exactly how to do this matlab problem. The problem asks to create a function that takes an input, randomly generates numbers from 1 to 1000, and then once the randomly generated number equals the input, the function gives the output of how many times it took to randomly generate the input number. The reason I am having trouble is because I know how to use a while loop that continues to generate random numbers, but I dont know how to give an output that counts how many times the while loop ran.
  댓글 수: 1
Stephen23
Stephen23 2016년 3월 20일
Define a variable before the loop with the value zero, and in each loop iteration increment its value by one.

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

답변 (1개)

Star Strider
Star Strider 2016년 3월 20일
You need to set up a counter. At the risk of doing part of the problem for you, there’s no way to describe it other than to code it:
count = 0;
x = 0;
while x ~= 209
count = count + 1;
x = randi(1000);
end

카테고리

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