Scilab-Branch-5.3-GIT
- 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
geomean
幾何学的平均
呼び出し手順
gm=geomean(x) gm=geomean(x,'r')(or, equivalently, gm=geomean(x,1)) gm=geomean(x,'c')(or, equivalently, gm=geomean(x,2))
パラメータ
- x
実数または複素数のベクトルまたは行列
説明
この関数は,ベクトルまたは行列x
の幾何学的平均
を計算します.
ベクトルまたは行列x
に関して,
gm=geomean(x)
は,
x
の全てのエントリの幾何学的平均を
スカラーgm
に返します.
gm=geomean(x,'r')
(または等価な
gm=gmean(x,1)
) は,
行ベクトルgm
の各エントリに,x
の
各列の幾何学的平均を返します.
gm=geomean(x,'c')
(または等価な
gm=gmean(x,2)
) は,
列ベクトルgm
の各エントリに,x
の
各行の幾何学的平均を返します.
作者
Carlos Klimann
参考文献
Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, fifth edition, J.Wiley & Sons, 1990.
<< ftuneq | Statistics | harmean >> |