Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
wcenter
中心化と重み付け
呼び出し手順
s=wcenter(x) s=wcenter(x,'r') or s=wcenter(x,1) s=wcenter(x,'c') or s=wcenter(x,2)
パラメータ
x: 実数または複素数のベクトルまたは行列
説明
この関数は,数値行列x
を重み付けし,中心化したs
を
計算します.
あるベクトルまたは行列x
について,s=wcenter(x)
は,行列s
の係数(i,j)
に
値(x(i,j)-xbar)/sigma
を返します.
ただし,xbar
はx
の係数の値の平均,
sigma
はその標準偏差です.
s=wcenter(x,'r')
(もしくは等価な
s=wcenter(x,1)
) は, x
の値の行方向の中心化です.
この関数は,xbarv(j)
をj
列の値の平均,
sigmav(j)
をx
のj
列目の
標準偏差として,
値(x(i,j)-xbarv(j))/sigmav(j)
をエントリs(i,j)
に返します.
s=wcenter(x,'c')
(もしくは等価な
s=wcenter(x,2)
) は,x
の値の行方向の中心化です.
この関数は,xbarvh(i)
をi
行の値の平均,
sigmah(i)
をx
のi
行目の
標準偏差として,
値(x(i,j)-xbarh(i))/sigmah(i)
をエントリs(i,j)
に返します.
例
x=[0.2113249 0.0002211 0.6653811; 0.7560439 0.3303271 0.6283918] s=wcenter(x) s=wcenter(x,'r') s=wcenter(x,'c')
参照
- center — 中心
Report an issue | ||
<< trimmean | Mean Central Tendency | Dispersion widths >> |