forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp10.xml
More file actions
46 lines (46 loc) · 1.89 KB
/
Copy pathexp10.xml
File metadata and controls
46 lines (46 loc) · 1.89 KB
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
<doc>
<legacy_id>2370</legacy_id>
<name>exp10</name>
<type>function</type>
<syntax>
<example>the exp10 of <i>number</i></example>
<example>exp10(<i>number</i>)</example>
</syntax>
<library></library>
<objects>
</objects>
<synonyms>
</synonyms>
<classification>
<category>Math, Logic, & Dates</category>
</classification>
<references>
<function tag="exp">exp Function</function>
</references>
<history>
<introduced version="1.0">Added.</introduced>
</history>
<platforms>
<mac/>
<windows/>
<linux/>
<ios/>
<android/>
</platforms>
<classes>
<desktop/>
<server/>
<web/>
<mobile/>
</classes>
<security>
</security>
<summary><glossary tag="return">Returns</glossary> the <href tag="glossary/Math,_Logi/8.xml">decimal</href> exponential of a number.</summary>
<examples>
<example>exp10(2) <code><i>-- returns 100</i></code></example>
<example>exp10(-3) <code><i>-- returns 0.001</i></code></example>
</examples>
<description>
<p>Use the <b>exp10</b> function to obtain a power of 10.</p><p/><p><b>Parameters:</b></p><p>The <i>number</i> is a <glossary tag="real number">real number</glossary>, or an <glossary tag="expression">expression</glossary> that <glossary tag="evaluate">evaluates</glossary> to a number.</p><p/><p><b>Value:</b></p><p>The <b>exp10</b> function <glossary tag="return">returns</glossary> a positive number.</p><p/><p><b>Comments:</b></p><p>The expression<code> exp10(number) </code>is equal to<code> 10^number</code>.</p><p/><p>If <i>number</i> is a positive <keyword tag="integer">integer</keyword>,<code> exp10(number) </code>is a 1 followed by <i>number</i> zeros. If <i>number</i> is a <glossary tag="negative">negative</glossary> <keyword tag="integer">integer</keyword>,<code> exp10(number) </code>is a decimal point followed by <i>number</i>-1 zeros and a one.</p>
</description>
</doc>