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

« back to all changes in this revision

Viewing changes to man/polynomials/coffg.man

  • 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
 
.TH coffg 8 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an 
3
 
.SH NAME
4
 
coffg - inverse of polynomial matrix
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
[Ns,d]=coffg(Fs) 
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP
11
 
Fs
12
 
: square polynomial matrix
13
 
.SH DESCRIPTION
14
 
\fVcoffg\fR computes \fVFs^-1\fR where \fVFs\fR is a polynomial
15
 
matrix by co-factors method.
16
 
.LP
17
 
\fVFs\fR inverse = \fVNs/d\fR
18
 
.LP
19
 
\fVd\fR = common denominator; \fVNs\fR =  numerator (a polynomial matrix)
20
 
.LP
21
 
(For large matrices,be patient...results are generally reliable)
22
 
.SH EXAMPLE
23
 
.nf
24
 
s=poly(0,'s')
25
 
a=[ s, s^2+1; s  s^2-1];
26
 
[a1,d]=coffg(a);
27
 
(a1/d)-inv(a)
28
 
.fi
29
 
.SH SEE ALSO
30
 
determ, detr, invr, penlaur, glever
31
 
.SH AUTHOR
32
 
F. D.
33
 
 
34