Scilab 5.3.0
- Scilab Online 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
covar
2つの変数の共分散
呼び出し手順
s=covar(x,y,fre)
パラメータ
- x
実数または複素数のベクトル
- y
実数または複素数のベクトル
- fre
length(x) x length(y)の行列
説明
covar(x,y,fre)
は2つの変数xおよびyの
共分散を計算します.
freは次元length(x) x length(y)の行列です.
freの中で,インデックス(i,j)の要素はx_i&y_jの
値または数値または周波数に対応します.
参考文献
Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, J.Wiley & Sons, 1990.
例
x=[10 20 30 40] y=[10 20 30 40] fre=[.20 .04 .01 0; .10 .36 .09 0; 0 .05 .10 0; 0 0 0 .05] s=covar(x,y,fre)
作者
Carlos Klimann
<< correl | Statistics | ftest >> |