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

givens

ギブンス変換

呼び出し手順

U=givens(xy)

U=givens(x,y)

[U,c]=givens(xy)

[U,c]=givens(x,y)

引数

x,y

実数または複素数

xy

実数または複素数の要素数2の列ベクトル

U

2x2 ユニタリ行列

c

実数または複素数の要素数2の列ベクトル

説明

xy = [x;y]として

U= givens(x, y) または U = givens(xy) は,次のような2x2 の ユニタリ行列 U を返します:

U*xy=[r;0]=c.

givens(x,y) および givens([x;y]) は等価であることに 注意してください.

A=[3,4;5,6];
U=givens(A(:,1));
U*A

参照

  • qr — QR 分解
Report an issue
<< Subspaces Linear Algebra householder >>

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:48 CET 2022