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

« back to all changes in this revision

Viewing changes to man/linear/coff.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 coff 1 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
coff - resolvent (cofactor method)
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
[N,d]=coff(M [,var]) 
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP
11
 
M
12
 
: square real matrix
13
 
.TP
14
 
var
15
 
: character string
16
 
.TP
17
 
N
18
 
: polynomial matrix (same size as \fVM\fR)
19
 
.TP
20
 
d
21
 
:
22
 
polynomial (characteristic polynomial \fVpoly(A,'s')\fR)
23
 
.SH DESCRIPTION
24
 
\fVcoff\fR computes R=\fV(s*eye()-M)^-1\fR for \fVM\fR a real matrix. 
25
 
R is given by \fVN/d\fR.
26
 
.LP
27
 
\fVN\fR = numerator polynomial matrix.
28
 
.LP
29
 
\fVd\fR = common denominator.
30
 
.LP
31
 
\fVvar\fR character string ('\fVs\fR' if omitted)
32
 
.SH EXAMPLE
33
 
.nf
34
 
M=[1,2;0,3];
35
 
[N,d]=coff(M)
36
 
N/d
37
 
inv(%s*eye()-M)
38
 
.fi
39
 
.SH SEE ALSO
40
 
coffg, ss2tf, nlev, poly
41
 
 
42