File: determ.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (34 lines) | stat: -rw-r--r-- 834 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
determ            Scilab Group            Scilab Function            determ
NAME
   determ - determinant of polynomial matrix
  
CALLING SEQUENCE
 res=determ(W [,k])
PARAMETERS
 W    : real square polynomial matrix
      
 k    : integer (upper bound for the degree of the determinant of W)
      
DESCRIPTION
   returns the determinant of a real polynomial matrix  (computation made by
  FFT).
  
   k is an integer larger than the actual degree of the determinant of W.
  
   The default value of k is the smallest power of 2 which is larger than
  n*maxi(degree(W)).
  
   Method: evaluate the determinant of W for the Fourier frequencies and
  apply inverse FFT to the coefficients of the determinant.
  
EXAMPLE
 s=poly(0,'s');
 w=s*rand(10,10);
 determ(w)
 det(coeff(w,1))*s^10
SEE ALSO
   det, detr, coffg
  
AUTHOR
   F.D.