~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/elementary/pen2ea.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH pen2ea G "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
pen2ea - pencil to E,A conversion
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
[E,A]=pen2ea(Fs)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP
 
11
Fs
 
12
: matrix pencil \fVs*E-A\fR
 
13
.TP
 
14
E,A
 
15
: two matrices such that \fVFs=s*E-A\fR
 
16
.SH DESCRIPTION
 
17
Utility function. Given the pencil \fVFs=s*E-A\fR,
 
18
returns the matrices \fVE\fR and \fVA\fR.
 
19
.SH EXAMPLE
 
20
.nf
 
21
E=[1,0];A=[1,2];s=poly(0,'s');
 
22
[E,A]=pen2ea(s*E-A)
 
23
.fi
 
24