Scilab 5.3.1
- Scilab help
- Statistics
- cdfbet
- cdfbin
- cdfchi
- cdfchn
- cdff
- cdffnc
- cdfgam
- cdfnbn
- cdfnor
- cdfpoi
- cdft
- center
- wcenter
- cmoment
- correl
- covar
- ftest
- ftuneq
- geomean
- harmean
- iqr
- labostat
- mad
- mean
- meanf
- median
- moment
- msd
- mvvacov
- nancumsum
- nand2mean
- nanmax
- nanmean
- nanmeanf
- nanmedian
- nanmin
- nanstdev
- nansum
- nfreq
- pca
- perctl
- princomp
- quart
- regress
- sample
- samplef
- samwr
- show_pca
- st_deviation
- stdevf
- strange
- tabul
- thrownan
- trimmean
- variance
- variancef
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
st_deviation
ベクトル/行列の要素の(行方向または列方向の)標準偏差
stdev
ベクトル/行列の要素の(行方向または列方向の)標準偏差
呼び出し手順
y=st_deviation(x) y=st_deviation(x,'r') y=st_deviation(x,'c') y=stdev(x) y=stdev(x,'r') y=stdev(x,'c')
パラメータ
- x
実数ベクトルまたは行列
- y
スカラーまたはベクトル
説明
st_deviation は, N-1で正規化された"標本"標準偏差を計算します. ただし, Nはデータ長です.
xがベクトルまたは行列の場合, y=st_deviation(x)は
xの全ての要素の標準偏差をスカラーyとして返します.
y=st_deviation(x,'r') (または等価的に,
y=st_deviation(x,1)) は行毎の標準偏差です.
列ベクトルyの各要素についてxの各行の標準偏差を
返します.
y=st_deviation(x,'c') (または等価的に, y=st_deviation(x,2))
は列毎の標準偏差です.行ベクトルyの各要素についてxの各列の
標準偏差を返します.
例
A=[1,2,10;7,7.1,7.01]; st_deviation(A) st_deviation(A,'r') st_deviation(A,'c')
参照
| << show_pca | Statistics | stdevf >> |