File: pbig.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (49 lines) | stat: -rw-r--r-- 1,219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

pbig(1)                        Scilab Function                        pbig(1)
NAME
  pbig - eigen-projection

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

PARAMETERS

  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.

EXAMPLE
  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, projspec, fullrf

AUTHOR
  F. D. (1988)