Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - Português

Change language to:
English - Français - 日本語 - Русский

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

Ajuda Scilab >> Linear Algebra > Eigenvalue and Singular Value > pbig

pbig

autoprojeção

Seqüência de Chamamento

[Q,M]=pbig(A,thres,flag)

Parâmetros

A

matriz quadrada de reais

thres

número real

flag

string ('c' ou 'd')

Q,M

matrizes de reais

Descrição

Projeção sobre um auto-subespaço associado aos autovalores de parte real>= thres (flag='c') ou com magnitude >= thres (flag='d').

A projeção é definida por Q*M, Q tem posto-coluna cheio, M tem posto-linha cheio e M*Q=eye.

Se flag='c', os autovalores de M*A*Q = autovalores de A com parte real >= thres.

Se flag='d', os autovalores de M*A*Q = autovalores de A com magnitude >= thres.

Se flag='c' e se [Q1,M1] = fatoração em posto cheio (fullrf) de eye()-Q*M então os autovalores de M1*A*Q1 = autovalores de A com parte real < thres.

Se flag='d' e se [Q1,M1] =fatoração em posto cheio (fullrf) de eye()-Q*M então os autovalores de M1*A*Q1 = autovalores de A com magnitude < thres.

Exemplos

A=diag([1,2,3]);X=rand(A);A=inv(X)*A*X;
[Q,M]=pbig(A,1.5,'d');
spec(M*A*Q)
[Q1,M1]=fullrf(eye()-Q*M);
spec(M1*A*Q1)

Função Usada

pbig é baseada na forma ordenada de Schur (função do Scilab schur).

Report an issue
<< hess Eigenvalue and Singular Value projspec >>

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 Oct 01 17:39:44 CEST 2012