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
cmoment
全ての次数の中心モーメント
呼び出し手順
mom=cmoment(x,ord) mom=cmoment(x,ord,'r') or mom=cmoment(x,ord,1) mom=cmoment(x,ord,'c') or mom=cmoment(x,ord,2)
パラメータ
- x
実数または複素数のベクトルまたは行列
- ord
正の整数
説明
cmoment(x,ord)
は,x
の要素の次数ordの
中心モーメントです.3番目の引数に文字列'r'
(または
1
) または 'c'
(または 2
)
が指定された場合,
最初のケースでは,mom(j)
にx
のj
列目の次数ord
の
中心モーメントをmom(j)
に有するような,
行ベクトルmom
を返します.
行の中心モーメントについても同様にcmoment(x,ord,'c')
を使用することができます.
参考文献
Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, J.Wiley & Sons, 1990.
例
x=[0.2113249 0.0002211 0.6653811; 0.7560439 0.3303271 0.6283918] mom=cmoment(x,3) mom=cmoment(x,2,'r') mom=cmoment(x,3,'c')
参照
- sum — 配列要素の合計
- median — ベクトル/行列/配列の要素の中央値 (行単位の中央値, 列単位の中央値,...)
- stdev — ベクトル/行列エントリの標準偏差 (行または列毎)
- mean — mean of all values, or means along a given dimension
- meanf — ベクトルまたは行列の重み付き平均
- moment — 次数を指定した非心モーメント
- nanmean — 平均 (Nanを無視)
- nanmeanf — 頻度を指定した平均 (Nanを無視).
- stdev — ベクトル/行列エントリの標準偏差 (行または列毎)
- stdevf — 標準偏差
- variance — variance (and mean) of a vector or matrix (or hypermatrix) of real or complex numbers
- variancef — ベクトルまたは行列の値の標準偏差
- nanstdev — 標準偏差 (NaNを無視).
Report an issue | ||
<< Empirical distribution | Empirical distribution | histc >> |