/usr/share/doc/gdl-coyote/html/cgloggen.html is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | <html>
<head>
<TITLE>coyote: CGLOGGEN</TITLE>
<style>
dt {font-weight: bold;}
</style>
</head>
<body>
<H1><a href="index.html">coyote</a>: CGLOGGEN</H1>
<ul>
<li><a href=Mathematics.html>coyote/Mathematics</a></li>
<li><a href=Utilities.html>coyote/Utilities</a></li>
<li><a href="/usr/share/gnudatalanguage/coyote/cgloggen.pro">[Source code]</a></li>
</ul>
<dl>
<dt>Description</dt>
<dd><pre>
This function creates an evenly spaced vector of points in log space.
</pre></dd>
</dl>
<dl>
<dt>Categories</dt>
<dd><pre>
Math, Utilities
</pre></dd>
</dl>
<dl>
<dt>Returns</dt>
<dd><pre>
A vector of values, evenly spaced along a log axis.
</pre></dd>
</dl>
<dl>
<dt>Params</dt>
<dd><pre>
numpts: in, optional, type=integer, default=10
The number of points desired in the output vector.
</pre></dd>
</dl>
<dl>
<dt>Keywords</dt>
<dd><pre>
double: in, optional, type=boolean, default=0
Set this keyword to return the values as double precision values.
Otherwise, floating point values are returned.
finish: in, optional, type=float/double, default=100
The ending value of the vector. The output values are evenly spaced
between `Start` and `Finish`. This value must be a positive number.
start: in, optional, type=float/double, default=1
The starting value of the vector. The output values are evenly spaced
between `Start` and `Finish`. This value must be a positive number.
</pre></dd>
</dl>
<dl>
<dt>Examples</dt>
<dd><pre>
To create 10 values evenly spaced between 5 and 15::
points = cgLogGen(10, Start=5, Finish=150)
cgPlot, points, PSym=2, /YLog
</pre></dd>
</dl>
<dl>
<dt>Author</dt>
<dd><pre>
FANNING SOFTWARE CONSULTING::
David W. Fanning
1645 Sheely Drive
Fort Collins, CO 80526 USA
Phone: 970-221-0438
E-mail: david@idlcoyote.com
Coyote's Guide to IDL Programming: http://www.idlcoyote.com
</pre></dd>
</dl>
<dl>
<dt>History</dt>
<dd><pre>
Change History::
Written, 17 January 2012. DWF.
</pre></dd>
</dl>
<dl>
<dt>Copyright</dt>
<dd><pre>
Copyright (c) 2012, Fanning Software Consulting, Inc.
</pre></dd>
</dl>
</body>
</html>
|