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

« back to all changes in this revision

Viewing changes to man/polynomials/denom.cat

  • 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
denom            Scilab Group            Scilab Function              denom
 
2
NAME
 
3
   denom - denominator
 
4
  
 
5
CALLING SEQUENCE
 
6
 den=denom(r)
 
7
PARAMETERS
 
8
 r    : rational or polynomial or constant matrix.
 
9
      
 
10
 den  : polynomial matrix
 
11
      
 
12
DESCRIPTION
 
13
   returns the denominator of a rational matrix.
 
14
  
 
15
   Since rationals are internally represented as
 
16
  r=list(['r','num','den','dt'],num,den,[]), denom(r) is the same as r(3)
 
17
  or r('den') .
 
18
  
 
19
SEE ALSO
 
20
   numer 
 
21