~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/polynomials/determ.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
determ            Scilab Group            Scilab Function            determ
2
 
NAME
3
 
   determ - determinant of polynomial matrix
4
 
  
5
 
CALLING SEQUENCE
6
 
 res=determ(W [,k])
7
 
PARAMETERS
8
 
 W    : real square polynomial matrix
9
 
      
10
 
 k    : integer (upper bound for the degree of the determinant of W)
11
 
      
12
 
DESCRIPTION
13
 
   returns the determinant of a real polynomial matrix  (computation made by
14
 
  FFT).
15
 
  
16
 
   k is an integer larger than the actual degree of the determinant of W.
17
 
  
18
 
   The default value of k is the smallest power of 2 which is larger than
19
 
  n*maxi(degree(W)).
20
 
  
21
 
   Method: evaluate the determinant of W for the Fourier frequencies and
22
 
  apply inverse FFT to the coefficients of the determinant.
23
 
  
24
 
EXAMPLE
25
 
 s=poly(0,'s');
26
 
 w=s*rand(10,10);
27
 
 determ(w)
28
 
 det(coeff(w,1))*s^10
29
 
SEE ALSO
30
 
   det, detr, coffg
31
 
  
32
 
AUTHOR
33
 
   F.D.
34