- 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
stdevf
標準偏差
呼び出し手順
s=stdevf(x,fre) s=stdevf(x,fre,'r') or s=stdevf(x,fre,1) s=stdevf(x,fre,'c') or s=stdevf(x,fre,2)
パラメータ
- x
実数または複素数のベクトルまたは行列
説明
この関数はベクトルまたは行列x
の
値の標準偏差を計算します.
その各々には,x
と同じ大きさの
整数ベクトルまたは行列fre
の対応する値により指定された頻度が考慮されます.
あるベクトルまたは行列x
について, s=stdevf(x,fre) (または
s=stdevf(x,fre,'*')
は,
スカラーs
に
x
の全エントリの標準偏差を返します.
各値には,fre
の対応する値により示された
多重度が考慮されます.
s=stdevf(x,fre,'r')
(または等価な,
s=stdevf(x,fre,1)
) は,
1xsize(x,'c')の行ベクトルs
の各エントリに
x
の各列の標準偏差を返します.
各値には,fre
の対応する値により示された
多重度が考慮されます.
s=stdevf(x,fre,'c')
(または等価な,
s=stdevf(x,fre,2)
) は,
size(x,'c')x1の列ベクトルs
の各エントリに
x
の各行の標準偏差を返します.
各値には,fre
の対応する値により示された
多重度が考慮されます.
例
x=[0.2113249 0.0002211 0.6653811;0.7560439 0.9546254 0.6283918] fre=[1 2 3;3 4 3] m=stdevf(x,fre) m=stdevf(x,fre,'r') m=stdevf(x,fre,'c')
作者
Carlos Klimann
参考文献
Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, fifth edition, J.Wiley & Sons, 1990.
<< st_deviation | Statistics | strange >> |