- Scilab help
- Linear Algebra
- aff2ab
- balanc
- bdiag
- chfact
- chol
- chsolve
- classmarkov
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- eigenmarkov
- ereduc
- expm
- fstair
- fullrf
- fullrfk
- genmarkov
- givens
- glever
- gschur
- gspec
- hess
- householder
- im_inv
- inv
- kernel
- kroneck
- linsolve
- lsq
- lu
- lyap
- nlev
- orth
- pbig
- pencan
- penlaur
- pinv
- polar
- proj
- projspec
- psmall
- qr
- quaskro
- randpencil
- range
- rank
- rankqr
- rcond
- rowcomp
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- spec
- sqroot
- squeeze
- sva
- svd
- sylv
- trace
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
psmall
spectral projection
Calling Sequence
[Q,M]=psmall(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 modulus < 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
Authors
F. Delebecque INRIA. (1988);
Used Functions
This function is  based on the ordered schur form (scilab
   function schur).
| << projspec | Linear Algebra | qr >> |