What does this vector assignment mean?
조회 수: 1 (최근 30일)
이전 댓글 표시
diceLeft = 5
dice = []
dice = [dice randi([1,6],1,diceLeft)];
댓글 수: 0
채택된 답변
Thorsten
2017년 4월 4일
That's easy:
randi([1,6],1,diceLeft)
generates a 1 x diceLeft matrix of random integer values from the interval [1,6].
For the first call of
dice = [dice randi([1,6],1,diceLeft)];
when dice is empty, you get these diceLeft numbers; for subsequent calls of
dice = [dice randi([1,6],1,diceLeft)];
you add diceLeft new random numbers.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!