1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) 2008 - INRIA
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
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:ns5="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:id="logspace" xml:lang="en">
15 <refname>logspace</refname>
16 <refpurpose>logarithmically spaced vector</refpurpose>
19 <title>Calling Sequence</title>
20 <synopsis>logspace(d1,d2, [n])</synopsis>
23 <title>Arguments</title>
28 <para>real or complex scalar (special meaning for
29 <literal>%pi</literal>)
36 <para>integer: number of requested values. It must be greater or equal to 2 (default value = 50)</para>
42 <title>Description</title>
44 returns a row vector of <literal>n</literal> logarithmically equally
45 spaced points between <latex>10^{d1}</latex> and
46 <latex>10^{d2}</latex>. If <literal>d2=%pi</literal> then the points are
47 between <latex>10^{d1}</latex> and <latex>\pi</latex>.
51 <title>Examples</title>
52 <programlisting role="example"><![CDATA[
56 <refsection role="see also">
57 <title>See Also</title>
58 <simplelist type="inline">
60 <link linkend="linspace">linspace</link>
65 <title>History</title>
68 <revnumber>5.4.0</revnumber>
69 <revremark>The logspace function accepts column vectors as input argument for the two first input arguments.</revremark>