Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Français

Change language to:
English - 日本語 - 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

Aide de Scilab >> Algèbre Lineaire > givens

givens

Transformation de Givens

Séquence d'appel

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

Paramètres

x,y

deux nombres réels ou complexes

xy

vecteur colonne réel ou complexe à deux composantes

U

matrice unitaire 2 x 2

c

vecteur colonne réel ou complexe à deux composantes

Description

U= givens(x, y) ou U = givens(xy) avec xy = [x;y] renvoie U une matrice unitaire 2x2 telle que :

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

Notez que givens(x,y) et givens([x;y]) sont équivalents.

Exemples

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

Voir aussi

  • qr — factorisation QR
Report an issue
<< Sous-espaces vectoriels Algèbre Lineaire 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:33:06 CET 2022