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

« back to all changes in this revision

Viewing changes to man/fr/control/specfact.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>specfact</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="specfact"> spectral factor</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[W0,L]=specfact(A,B,C,D)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <DESCRIPTION>
 
13
    <P>
 
14
    Given a spectral density matrix <VERB>phi(s)</VERB>:</P>
 
15
    <VERBATIM>
 
16
<![CDATA[
 
17
                 -1                   -1
 
18
     R + C*(s*I-A) * B  +  B'*(-s*I-A') * C'  with R=D+D' > 0
 
19
   ]]>
 
20
    </VERBATIM>
 
21
    <P><VERB>specfact</VERB> computes  <VERB>W0</VERB> and <VERB>L</VERB> such 
 
22
    that  <VERB>W(s)=W0+L*(s*I-A)^-1*B</VERB>  is a
 
23
    spectral factor of of <VERB>PHI(s)</VERB>, i.e.</P>
 
24
    <P>
 
25
      <VERB>phi(s)=W'(-s)*W(s)</VERB>
 
26
    </P>
 
27
  </DESCRIPTION>
 
28
  <EXAMPLE>
 
29
<![CDATA[
 
30
A=diag([-1,-2]);B=[1;1];C=[1,1];D=1;s=poly(0,'s');
 
31
W1=syslin('c',A,B,C,D);
 
32
phi=gtild(W1,'c')+W1;
 
33
phis=clean(ss2tf(phi))
 
34
clean(phis-horner(phis,-s)');   //check this is 0...
 
35
[A,B,C,D]=abcd(W1);
 
36
[W0,L]=specfact(A,B,C,D);
 
37
W=syslin('c',A,B,L,W0)
 
38
Ws=ss2tf(W);
 
39
horner(Ws,-s)*Ws
 
40
 ]]>
 
41
  </EXAMPLE>
 
42
  <SEE_ALSO>
 
43
    <SEE_ALSO_ITEM>
 
44
      <LINK>gtild</LINK>
 
45
    </SEE_ALSO_ITEM>
 
46
    <SEE_ALSO_ITEM>
 
47
      <LINK>sfact</LINK>
 
48
    </SEE_ALSO_ITEM>
 
49
    <SEE_ALSO_ITEM>
 
50
      <LINK>fspecg</LINK>
 
51
    </SEE_ALSO_ITEM>
 
52
  </SEE_ALSO>
 
53
  <AUTHOR>F. D.   </AUTHOR>
 
54
</MAN>