Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.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 help >> Linear Algebra > Eigenvalue and Singular Value > pbig

pbig

eigen-projection

Calling Sequence

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

Arguments

A

real square matrix

thres

real number

flag

character string ('c' or 'd')

Q,M

real matrices

Description

Projection on eigen-subspace associated with eigenvalues with real part >= thres (flag='c') or with magnitude >= thres (flag='d').

The projection is defined by Q*M, Q is full column rank, M is full row rank and M*Q=eye.

If flag='c', the eigenvalues of M*A*Q = eigenvalues of A with real part >= thres.

If flag='d', the eigenvalues of M*A*Q = eigenvalues of A with magnitude >= thres.

If flag='c' and if [Q1,M1] = full rank factorization (fullrf) of eye()-Q*M then eigenvalues of M1*A*Q1 = eigenvalues of A with real part < thres.

If flag='d' and if [Q1,M1] = full rank factorization (fullrf) of eye()-Q*M then eigenvalues of M1*A*Q1 = eigenvalues of A with magnitude < thres.

Examples

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)

See Also

  • psmall — spectral projection
  • projspec — spectral operators
  • fullrf — full rank factorization
  • schur — [ordered] Schur decomposition of matrix and pencils

Used Functions

pbig is based on the ordered schur form (scilab function 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:
Tue Apr 02 17:37:55 CEST 2013