column vector with specified number

조회 수: 3 (최근 30일)
yuval ohayon
yuval ohayon 2017년 10월 18일
답변: Walter Roberson 2017년 10월 18일
hi everyone, i need to generate column vector of 10 elements with only the number 2 and 3 ,it need to indexed randomly. well i have tried rand-rem, rbinom (x,y,z) is not working in my matlab, how I define only the numbers 2 and 3
solution a=[2 3 2 2 3 3 3 2 2 2 ] randomly
thanks

답변 (2개)

Jan
Jan 2017년 10월 18일
a = randi([2,3], 1, 10)

Walter Roberson
Walter Roberson 2017년 10월 18일
a = randi([2 3], 1, 10);
"rbinom (x,y,z) is not working in my matlab"
rbinom is part of the R language, not part of MATLAB.

카테고리

Help CenterFile Exchange에서 Dialog Boxes에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by