필터 지우기
필터 지우기

By what I can replace randint() function.

조회 수: 4 (최근 30일)
Karthik K
Karthik K 2018년 9월 20일
답변: Steven Lord 2018년 9월 20일
Here is a randint function, i am not having communication toolbox. How i can rewrite this statement. k = randint(1,1,10)+5;

채택된 답변

Torsten
Torsten 2018년 9월 20일
편집: Torsten 2018년 9월 20일
r = rand(1,1);
k = min(floor(10*r),9)+5

추가 답변 (1개)

Steven Lord
Steven Lord 2018년 9월 20일
The recommendation in the Release Notes is to use randi instead. The equivalent call is:
randi([5, 14], [1 1])
since randint(1, 1, 10) created a number in the range [0, 9].

Community Treasure Hunt

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

Start Hunting!

Translated by