i have the following array

조회 수: 1 (최근 30일)
mohammed elmenshawy
mohammed elmenshawy 2017년 7월 12일
댓글: Star Strider 2017년 7월 13일
Z=[22,45,65,35,65,54,45,67,84,95,86,58,29,95,93]; How to choose 5 random numbers from these numbers?? So that the output is within these numbers??

채택된 답변

Star Strider
Star Strider 2017년 7월 12일
One approach:
Z=[22,45,65,35,65,54,45,67,84,95,86,58,29,95,93];
Out = Z(randperm(numel(Z),5))
The randperm function will create random indices for 5 elements of ‘Z’ without repetition.
  댓글 수: 2
mohammed elmenshawy
mohammed elmenshawy 2017년 7월 13일
thank u very much
Star Strider
Star Strider 2017년 7월 13일
My pleasure.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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