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

« back to all changes in this revision

Viewing changes to man/eng/tdcs/lotest.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>artest</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="lotest"> demo of the Lorenz attractor</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>[]=lotest([f_l,odem,xdim,npts,pinit])  </CALLING_SEQUENCE_ITEM>
 
11
    <CALLING_SEQUENCE_ITEM>[y]=lorenz(t,x)  </CALLING_SEQUENCE_ITEM>
 
12
    <CALLING_SEQUENCE_ITEM>[]=ilo(sig,ro,beta)  </CALLING_SEQUENCE_ITEM>
 
13
    <CALLING_SEQUENCE_ITEM>[]=ilof(sig,ro,beta)  </CALLING_SEQUENCE_ITEM>
 
14
  </CALLING_SEQUENCE>
 
15
  <PARAM>
 
16
    <PARAM_INDENT>
 
17
      <PARAM_ITEM>
 
18
        <PARAM_NAME>f_l</PARAM_NAME>
 
19
        <PARAM_DESCRIPTION>
 
20
          <SP>: can be <VERB>&quot;loren&quot;</VERB> or <VERB>lorenz</VERB>. it
 
21
  is the name of the external for  the Lorenz
 
22
  system. <VERB>&quot;loren&quot;</VERB> will use a Fortran coded
 
23
  version of the lorenz system and arnold will and <VERB>loren</VERB>
 
24
  will use a Scilab coded version.<VERB>lorentz</VERB> is the Scilab
 
25
  macro which code the lorenz system.  This macro is loaded when
 
26
  calling <VERB>lotest</VERB>.</SP>
 
27
        </PARAM_DESCRIPTION>
 
28
      </PARAM_ITEM>
 
29
      <PARAM_ITEM>
 
30
        <PARAM_NAME>ilof, ilo</PARAM_NAME>
 
31
        <PARAM_DESCRIPTION>
 
32
          <SP>:are used to fix the parameters of the Fortran and Scilab code version of the  Lorenz system.</SP>
 
33
        </PARAM_DESCRIPTION>
 
34
      </PARAM_ITEM>
 
35
      <PARAM_ITEM>
 
36
        <PARAM_NAME>odem,xdim,npts</PARAM_NAME>
 
37
        <PARAM_DESCRIPTION>
 
38
          <SP>: are optional arguments. Their meaning and syntax can be found in the portr3d   help</SP>
 
39
        </PARAM_DESCRIPTION>
 
40
      </PARAM_ITEM>
 
41
    </PARAM_INDENT>
 
42
  </PARAM>
 
43
  <DESCRIPTION>
 
44
    <P>
 
45
    A call to the function <VERB>lotest()</VERB> will interactively 
 
46
    display a phase portrait of  a the following dynamical system</P>
 
47
    <VERBATIM>
 
48
<![CDATA[
 
49
 y(1)=sig*(x(2)-x(1));
 
50
 y(2)=ro*x(1) -x(2)-x(1)*x(3);
 
51
 y(3)=-beta*x(3)+x(1)*x(2);
 
52
   ]]>
 
53
    </VERBATIM>
 
54
  </DESCRIPTION>
 
55
  <SEE_ALSO>
 
56
    <SEE_ALSO_ITEM>
 
57
      <LINK>portr3d</LINK>
 
58
    </SEE_ALSO_ITEM>
 
59
    <SEE_ALSO_ITEM>
 
60
      <LINK>ode</LINK>
 
61
    </SEE_ALSO_ITEM>
 
62
    <SEE_ALSO_ITEM>
 
63
      <LINK>chaintest</LINK>
 
64
    </SEE_ALSO_ITEM>
 
65
    <SEE_ALSO_ITEM>
 
66
      <LINK>lotest</LINK>
 
67
    </SEE_ALSO_ITEM>
 
68
  </SEE_ALSO>
 
69
</MAN>