필터 지우기
필터 지우기

I want my code to run continuously.

조회 수: 2 (최근 30일)
Kelly
Kelly 2013년 12월 5일
답변: sixwwwwww 2013년 12월 5일
In a .m file I wrote the following. g = randi(3,1)
When I press f5 and run it. It will give me a random number from 1 to 3. However, it will not change.
E.G
>>> g
1
>>> g
1
>>> g
1
g will forever be 1, what can I do that so that when I run my code, each time i type "g" it will give me a different random number from 1 to 3?

답변 (2개)

Walter Roberson
Walter Roberson 2013년 12월 5일
You are not defining a function, you are defining a variable. You can use this, provided you save it in the file "g.m"
function r = g
r = randi(3,1);
end
You cannot use this at the MATLAB command prompt, you must write it to a file.

sixwwwwww
sixwwwwww 2013년 12월 5일
try to run code again and again it will give you different values from 1 to 3 each time

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by