how to select 4 values from already assigned variables
a= [4 5 1 2 9 7 8 1]
select 4 values from a in random fashion

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 1월 21일
편집: Andrei Bobrov 2014년 1월 21일

0 개 추천

out = a(randperm(numel(a),4));
or
ii = randperm(numel(a));
out = a(ii(1:4));

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Random Number Generation에 대해 자세히 알아보기

질문:

2014년 1월 21일

편집:

2014년 1월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by