Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
sample
置換を有する標本化
呼び出し手順
s = sample(n,X,orient)
パラメータ
- n
正の整数 (標本の大きさ)
- X
行列. 標本はこの行列から展開されます.
- orient
オプションのパラメータ. 使用可能な値は 1, 2, 'r' または 'c'です
- s
標本を含むベクトルまたは行列
説明
この関数は,ベクトル(または行列) nx1を出力します. これには,行列Xから抽出された置換を有する n個のランダムな標本が含まれます.
s=sample(n,X) (または s=sample(n,X,'*')) は, その値がXからのn個の値のランダムな標本である ベクトル s を返します.
s=sample(n,X,'r') (または等価な s=sample(n,X,1)) は,size(X,'r')xnの行列を返します. これには,Xの行から置換付きで展開された n行のランダム標本が含まれます.
s=sample(n,X,'c') (または等価な s=sample(n,X,2)) は,nxsize(X,'c')の行列を返します. これには,Xの列から置換付きで展開された n列のランダム標本が含まれます.
例
X=['a' 'dd' 'arreu'; 'ber' 'car' 'zon'] s=sample(25,X) s=sample(25,X,'r') s=sample(25,X,'c')
Report an issue | ||
<< rand | random | samplef >> |