Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Statistics > Mean Central Tendency > center

center

中心

呼び出し手順

s=center(x)
s=center(x,'r') or s=center(x,1)
s=center(x,'c') or s=center(x,2)

パラメータ

x: 実数または複素数のベクトルまたは行列

説明

この関数は,数値行列xを中心化した s を計算します. あるベクトルまたは行列xについて, s=center(x) は, 値(x(i,j)-xbar)を 行列 s の要素(i,j) に返します. ただし,xbar は,xの係数の値の平均です. s=center(x,'r') (もしくは等価なs=center(x,1)) は, xの値の行方向の中心化です. この関数は,xbarv(j)j列の平均として, 値(x(i,j)-xbarv(j))をエントリs(i,j)に 有する行列を返します. s=center(x,'c') (もしくは等価な s=center(x,2)) は,xの値の列方向の中心化です. この関数は,xbarh(i)i行の平均として, 値(x(i,j)-xbarh(i))をエントリs(i,j)に 有する行列を返します.

x=[0.2113249  0.0002211 0.6653811;
   0.7560439  0.3303271 0.6283918]
s=center(x)
s=center(x,'r')
s=center(x,'c')

参照

  • wcenter — 中心化と重み付け
Report an issue
<< Mean Central Tendency Mean Central Tendency geomean >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:37:51 CET 2022