Randomly select samples from a matrix in proper order

조회 수: 2 (최근 30일)
Shuo Zhang
Shuo Zhang 2018년 1월 25일
댓글: Shuo Zhang 2018년 1월 26일
I have a 1 by 30000 matrix and I'd like to randomly select 300 elements from it. However, the selection should follow such a rule that if the previous selected element is the nth element in the matrix, then the next selection should be at least the n+1th element in the matrix. For example, if the first selection is the 5th element in the matrix, then the next selection should be done from the 6th element to the 30000th element, etc. I found out there's a command 'y = datasample(data,k)' that can take samples randomly, but what else should I do to ensure the right order?

답변 (2개)

James Tursa
James Tursa 2018년 1월 26일
편집: James Tursa 2018년 1월 26일
Solution without repeats:
x = your vector
n = number of samples to select
y = x(sort(randperm(numel(x),n)));
If you have an earlier version of MATLAB, then that last part must be done in multiple steps:
r = randperm(numel(x));
y = x(sort(r(1:n)));

Youssef  Khmou
Youssef Khmou 2018년 1월 26일
The selection procedure can be performed by ordering the inputs from the smallest to the largets, here is an example, a vector of N=4000 samples, we select randomnly P=100 points where the described rule is valid:
N=4000;
P=100;
x=rand(1,N);
Index=sort(round(N*rand(1,P)));
figure;
bar(Index);
y=x(Index);

카테고리

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