~ubuntu-branches/ubuntu/lucid/scilab/lucid

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/en_US/logspace.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2009-04-28 18:47:03 UTC
  • mfrom: (1.1.7 upstream) (4.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090428184703-7thddz8vtwqmxmx2
Tags: 5.1.1-4
* librefblas3-dev does not exist (yet). Thanks to Jose Ramon
* Do not stop when ocamlopt is not available on the arch 
  (ocaml-not-available.diff)
* Provide a clear error message for archs where modelicac compiler is 
  not available (modelicac-not-available.diff)
* scilab startup script moved from package scilab => scilab-bin (because of
  the ocamlopt problem, I cannot predict if modelicac will be available or
  not. Therefor, I ship usr/bin/ instead of binary per binary. This will
  also simplifies the packaging of Scilab 5.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
11
11
 *
12
12
 -->
13
 
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="logspace">
 
13
<refentry version="5.0-subset Scilab" xml:id="logspace" xml:lang="en"
 
14
          xmlns="http://docbook.org/ns/docbook"
 
15
          xmlns:xlink="http://www.w3.org/1999/xlink"
 
16
          xmlns:svg="http://www.w3.org/2000/svg"
 
17
          xmlns:ns5="http://www.w3.org/1999/xhtml"
 
18
          xmlns:mml="http://www.w3.org/1998/Math/MathML"
 
19
          xmlns:db="http://docbook.org/ns/docbook">
14
20
  <info>
15
21
    <pubdate>$LastChangedDate$</pubdate>
16
22
  </info>
 
23
 
17
24
  <refnamediv>
18
25
    <refname>logspace</refname>
19
 
    <refpurpose> logarithmically spaced vector</refpurpose>
 
26
 
 
27
    <refpurpose>logarithmically spaced vector</refpurpose>
20
28
  </refnamediv>
 
29
 
21
30
  <refsynopsisdiv>
22
31
    <title>Calling Sequence</title>
 
32
 
23
33
    <synopsis>logspace(d1,d2, [n])</synopsis>
24
34
  </refsynopsisdiv>
 
35
 
25
36
  <refsection>
26
37
    <title>Parameters</title>
 
38
 
27
39
    <variablelist>
28
40
      <varlistentry>
29
41
        <term>d1,d2</term>
 
42
 
30
43
        <listitem>
31
 
          <para>real or complex scalar (special meaning for <literal>%pi</literal>)</para>
 
44
          <para>real or complex scalar (special meaning for
 
45
          <literal>%pi</literal>)</para>
32
46
        </listitem>
33
47
      </varlistentry>
 
48
 
34
49
      <varlistentry>
35
50
        <term>n</term>
 
51
 
36
52
        <listitem>
37
53
          <para>integer (number of values) (default value = 50)</para>
38
54
        </listitem>
39
55
      </varlistentry>
40
56
    </variablelist>
41
57
  </refsection>
 
58
 
42
59
  <refsection>
43
60
    <title>Description</title>
44
 
    <para>
45
 
    returns a row vector of <literal>n</literal> logarithmically
46
 
    equally spaced points between <literal>10^d1</literal> and <literal>10^d2</literal>.  If <literal>d2=%pi</literal>
47
 
    then the points are between <literal>10^d1</literal> and <literal>pi</literal>.</para>
 
61
 
 
62
    <para>returns a row vector of <literal>n</literal> logarithmically equally
 
63
    spaced points between <literal>10^d1</literal> and
 
64
    <literal>10^d2</literal>. If <literal>d2=%pi</literal> then the points are
 
65
    between <literal>10^d1</literal> and <literal>pi</literal>.</para>
48
66
  </refsection>
 
67
 
49
68
  <refsection>
50
69
    <title>Examples</title>
51
 
    <programlisting role="example"><![CDATA[
52
70
 
 
71
    <programlisting role="example"> 
53
72
logspace(1,2,10)
54
 
 
55
 
  ]]></programlisting>
 
73
   </programlisting>
56
74
  </refsection>
 
75
 
57
76
  <refsection>
58
77
    <title>See Also</title>
 
78
 
59
79
    <simplelist type="inline">
60
 
      <member>
61
 
        <link linkend="linspace">linspace</link>
62
 
      </member>
 
80
      <member><link linkend="linspace">linspace</link></member>
63
81
    </simplelist>
64
82
  </refsection>
65
83
</refentry>