Sampling without replacement
s = samwr(sizam,numsamp,X)
: :numsamp integer. Number of samples to be extracted. : :X column vector. It contains the population. : :s matrix of type sizsam x numsamp. It contains numsamp random
samples (the columns) each of sizam (size(X,’*’)) extractions, without replacement, from the column vector X.
:
Gives samples without replacement from a column vector.
a=[0.33 1.24 2.1 1.03]
s=samwr(4,12,a)