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

« back to all changes in this revision

Viewing changes to man/fr/linear/randpencil.xml

  • 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
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>quaskro</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="randpencil"> random pencil</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>F=randpencil(eps,infi,fin,eta)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>eps</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: vector of integers</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>infi</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>: vector of integers</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
      <PARAM_ITEM>
 
27
        <PARAM_NAME>fin</PARAM_NAME>
 
28
        <PARAM_DESCRIPTION>
 
29
          <SP>: real vector, or monic polynomial, or vector of monic polynomial</SP>
 
30
        </PARAM_DESCRIPTION>
 
31
      </PARAM_ITEM>
 
32
      <PARAM_ITEM>
 
33
        <PARAM_NAME>eta</PARAM_NAME>
 
34
        <PARAM_DESCRIPTION>
 
35
          <SP>: vector of integers</SP>
 
36
        </PARAM_DESCRIPTION>
 
37
      </PARAM_ITEM>
 
38
      <PARAM_ITEM>
 
39
        <PARAM_NAME>F</PARAM_NAME>
 
40
        <PARAM_DESCRIPTION>
 
41
          <SP>: real matrix pencil <VERB>F=s*E-A</VERB>  (<VERB>s=poly(0,'s')</VERB>)</SP>
 
42
        </PARAM_DESCRIPTION>
 
43
      </PARAM_ITEM>
 
44
    </PARAM_INDENT>
 
45
  </PARAM>
 
46
  <DESCRIPTION>
 
47
    <P>
 
48
    Utility function.
 
49
    <VERB>F=randpencil(eps,infi,fin,eta)</VERB> returns a random pencil <VERB>F</VERB>
 
50
    with given Kronecker structure. The structure is given by:
 
51
    <VERB>eps=[eps1,...,epsk]</VERB>: structure of epsilon blocks (size eps1x(eps1+1),....)
 
52
    <VERB>fin=[l1,...,ln]</VERB>  set of finite eigenvalues (assumed real)  (possibly [])
 
53
    <VERB>infi=[k1,...,kp]</VERB> size of J-blocks at infinity
 
54
    <VERB>ki&gt;=1</VERB>  (infi=[] if no J blocks).
 
55
    <VERB>eta=[eta1,...,etap]</VERB>: structure ofeta blocks (size eta1+1)xeta1,...)</P>
 
56
    <P><VERB>epsi</VERB>'s should be &gt;=0, <VERB>etai</VERB>'s should be &gt;=0, <VERB>infi</VERB>'s should 
 
57
    be &gt;=1.</P>
 
58
    <P>
 
59
    If <VERB>fin</VERB> is a (monic) polynomial, the finite block admits the roots of 
 
60
    <VERB>fin</VERB> as eigenvalues.</P>
 
61
    <P>
 
62
    If <VERB>fin</VERB> is a vector of polynomial, they are the finite elementary
 
63
    divisors of <VERB>F</VERB> i.e. the roots of <VERB>p(i)</VERB> are finite
 
64
    eigenvalues of <VERB>F</VERB>.</P>
 
65
  </DESCRIPTION>
 
66
  <EXAMPLE>
 
67
<![CDATA[
 
68
F=randpencil([0,1],[2],[-1,0,1],[3]);
 
69
[Q,Z,Qd,Zd,numbeps,numbeta]=kroneck(F);
 
70
Qd, Zd
 
71
s=poly(0,'s');
 
72
F=randpencil([],[1,2],s^3-2,[]); //regular pencil
 
73
det(F)
 
74
 ]]>
 
75
  </EXAMPLE>
 
76
  <SEE_ALSO>
 
77
    <SEE_ALSO_ITEM>
 
78
      <LINK>kroneck</LINK>
 
79
    </SEE_ALSO_ITEM>
 
80
    <SEE_ALSO_ITEM>
 
81
      <LINK>pencan</LINK>
 
82
    </SEE_ALSO_ITEM>
 
83
    <SEE_ALSO_ITEM>
 
84
      <LINK>penlaur</LINK>
 
85
    </SEE_ALSO_ITEM>
 
86
  </SEE_ALSO>
 
87
</MAN>