File: projspec.man

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 (48 lines) | stat: -rw-r--r-- 970 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
.TH projspec 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
projspec - spectral operators 
.SH CALLING SEQUENCE
.nf
[S,P,D,i]=projspec(A)
.fi
.SH PARAMETERS
.TP 12
A
: square matrix
.TP
S, P, D
: square matrices
.TP
i
: integer (index of the zero eigenvalue of \fVA\fR).
.SH DESCRIPTION
Spectral characteristics of \fVA\fR at 0.
.LP
\fVS\fR = reduced resolvent at 0 (\fVS\fR = -Drazin_inverse(\fVA\fR)).
.LP
\fVP\fR = spectral projection at 0.
.LP
\fVD\fR = nilpotent operator at 0.
.LP
\fVindex\fR = index of the 0 eigenvalue.
.LP
One has \fV(s*eye-A)^(-1) = D^(i-1)/s^i +... + D/s^2 + P/s - S - s*S^2 -...\fR
around the singularity s=0.  
.SH EXAMPLE
.nf
deff('j=jdrn(n)','j=zeros(n,n);for k=1:n-1;j(k,k+1)=1;end')
A=sysdiag(jdrn(3),jdrn(2),rand(2,2));X=rand(7,7);
A=X*A*inv(X);
[S,P,D,index]=projspec(A);
index   //size of J-block
trace(P)  //sum of dimensions of J-blocks
A*S-(eye-P)
norm(D^index,1)
.fi
.SH SEE ALSO 
coff
.SH AUTHOR
F. D.