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

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ヘルプ >> Linear Algebra > Kernel > colcomp

colcomp

列圧縮,カーネル,ヌル空間

呼び出し手順

[W,rk]=colcomp(A [,flag] [,tol])

引数

A

実数または複素数の行列

flag

文字列

tol

実数

W

正方正則行列 (基底変換)

rk

整数 (Aのランク)

説明

Aの列圧縮: Ac = A*W は 列圧縮,すなわち Ac=[0,Af] となります.

ただし, Af はフル列ランクを有します: rank(Af) = rank(A) = rk.

flag および tol は オプションのパラメータ: flag = 'qr' または 'svd' (デフォルトは 'svd')です.

tol = 許容誤差パラメータ (デフォルト値は %epsのオーダー).

Wの最初のma-rk列は, size(A)=(na,ma)とするとき, Aのカーネルに広がります.

A=rand(5,2)*rand(2,5);
[X,r]=colcomp(A);
norm(A*X(:,1:$-r),1)

参照

  • rowcomp — 行圧縮, 範囲
  • fullrf — フルランク分解
  • fullrfk — A^kのフルランク分解
  • kernel — カーネル, ヌル空間
Report an issue
<< Kernel Kernel fullrf >>

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:
Thu Feb 14 15:02:07 CET 2019