Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Français

Change language to:
English - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide Scilab >> Statistiques > Sampling > samwr

samwr

Sampling without replacement

Calling Sequence

s = samwr(sizam,numsamp,X)

Arguments

sizam

integer. Size of a sample. It must be less or equal than size of 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.

Description

Gives samples without replacement from a column vector.

Examples

a=[0.33 1.24 2.1 1.03]
s=samwr(4,12,a)

See Also

  • sample — Sampling with replacement
  • samplef — sample with replacement from a population and frequences of his values.
Report an issue
<< samplef Sampling Summaries >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:36:46 CEST 2013