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

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.
However, this page did not exist in the previous stable version.

Scilab manual >> Statistics > st_deviation

st_deviation

ベクトル/行列の要素の(行方向または列方向の)標準偏差

stdev

ベクトル/行列の要素の(行方向または列方向の)標準偏差

呼び出し手順

y=st_deviation(x)
y=st_deviation(x,'r')
y=st_deviation(x,'c')
y=stdev(x)
y=stdev(x,'r')
y=stdev(x,'c')

パラメータ

x

実数ベクトルまたは行列

y

スカラーまたはベクトル

説明

st_deviation は, N-1で正規化された"標本"標準偏差を計算します. ただし, Nはデータ長です.

xがベクトルまたは行列の場合, y=st_deviation(x)xの全ての要素の標準偏差をスカラーyとして返します.

y=st_deviation(x,'r') (または等価的に, y=st_deviation(x,1)) は行毎の標準偏差です. 列ベクトルyの各要素についてxの各行の標準偏差を 返します.

y=st_deviation(x,'c') (または等価的に, y=st_deviation(x,2)) は列毎の標準偏差です.行ベクトルyの各要素についてxの各列の 標準偏差を返します.

A=[1,2,10;7,7.1,7.01];
st_deviation(A)
st_deviation(A,'r')
st_deviation(A,'c')
<< show_pca Statistics stdevf >>

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:
Wed Jan 26 16:25:10 CET 2011