Scilab-Branch-6.1-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
moment
次数を指定した非心モーメント
呼び出し手順
mom=moment(x,ord) mom=moment(x,ord,'r') or mom=moment(x,ord,1) mom=moment(x,ord,'c') or mom=moment(x,ord,2)
パラメータ
- x
 実数または複素数のベクトルまたは行列
- ord
 正の整数
説明
moment(x,ord) はxの要素の
            ord次の非心モーメントです.
3番目の引数に文字列'r'  (または1)
            または'c' (または2)が指定された場合,
            最初の場合はmom(j)に
            xのj列の
            ord次の非心モーメントを含むような
            行ベクトルmomが出力されます.
            moment(x,ord,'c') は,同様に行に関する非心モーメントについて
            使用されます.
例
x=[0.2113249 0.0002211 0.6653811;0.7560439 0.3303271 0.6283918] mom=moment(x,3) mom=moment(x,2,'r') mom=moment(x,3,'c')
B参考文献
Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, fifth edition, J.Wiley & Sons, 1990.
| Report an issue | ||
| << histc | Empirical distribution | perctl >> |