필터 지우기
필터 지우기

Create a random sequence with specified elements

조회 수: 3 (최근 30일)
luca
luca 2019년 8월 2일
답변: madhan ravi 2019년 8월 2일
Hi
Given the following vector
Q= [25 30 35 30 40 20 25 30]
I want to create a random vector S that contain the
Element 1, 25 times
Element 2, 30 times
Element 3, 35 times
Element 4, 30 times
Element 5, 40 times
Element 6, 20 times
Element 7, 25 times
Element 8, 30 times
such as
S= [1 8 3 4 5 6 7 8 1 2 3 5 7 4 2 2 5 7 ...]
The creation of S should be random. but the number of times an element is repetead should respect the quantity indicated in Q.

채택된 답변

madhan ravi
madhan ravi 2019년 8월 2일
s = repelem(1:numel(Q),Q);
S = s(randperm(numel(s)))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by