Antilog and AntilogE (Float functions): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(22 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:Float:Antilog subtitle}}
{{Template:Float:Antilog and AntilogE subtitle}}


{{Template:Float:AntilogE subtitle}}
The <var>AntiLog</var> and <var>AntiLogE</var> [[Intrinsic classes|intrinsic]] functions return a number that is the natural [http://en.wikipedia.org/wiki/Antilog#Antilogarithms anti-logarithm] (or exponential) of the method object value.  The result is the natural logarithmic base ([http://en.wikipedia.org/wiki/E_%28mathematical_constant%29 &#x212f;]) raised to the power of the method object value.


These [[Intrinsic classes|intrinsic]] functions return a number that is the natural [http://en.wikipedia.org/wiki/Antilog#Antilogarithms anti-logarithm] (or exponential) of the method object value.
<var>AntiLog</var> and <var>AntiLogE</var> are synonyms.
The result is the natural logarithmic base (''[http://en.wikipedia.org/wiki/E_%28mathematical_constant%29 e]'') raised to the power of the method object value.


''AntiLog'' and ''AntiLogE'' are synonyms.
Available as of version 7.3 of the [[Sirius Mods]], the AntiLog function is
an object-oriented version of the [[$Exp|$Exp function]] function.
==Syntax==
==Syntax==
{{Template:Float:Antilog syntax}}
{{Template:Float:Antilog syntax}}
{{Template:Float:AntilogE syntax}}
{{Template:Float:AntilogE syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%value </th>
<tr><th>%number </th>
<td>A numeric variable to receive the antilog of the method object. </td></tr>
<td>A numeric variable to receive the antilog of the method object. </td></tr>
<tr><th>number </th>
<tr><th>float </th>
<td>A Float value.</td></tr>
<td>A <var>Float</var> value.</td></tr>
</table>
</table>
==Usage Notes==
 
Although you might expect ''''%x:log:antilog''''
==Usage notes==
to return the value in %x, the good fit techniques used
<ul><li>Although you might expect <code>%x:log:antilog</code> to return the value in <code>%x</code>, the good fit techniques used by the <var>[[Log_(Float_function)|Log]]</var> and AntiLog methods make the result not quite exact, as shown in the following example:
by the [[Intrinsic Log Function|Log]] and AntiLog methods make the result not
<p class="code">2:log:antilog = 2.00000000023047
quite exact, as shown in the following example:
3:log:antilog = 3.00000000017113
    2:log:antilog = 2.00000000023047
4:log:antilog = 4.00000000047426
    3:log:antilog = 3.00000000017113
5:log:antilog = 5.00000000057644
    4:log:antilog = 4.00000000047426
6:log:antilog = 6.00000000069796
    5:log:antilog = 5.00000000057644
7:log:antilog = 7.00000000056701
    6:log:antilog = 6.00000000069796
8:log:antilog = 8.00000000047046
    7:log:antilog = 7.00000000056701
9:log:antilog = 9.0000000010268
    8:log:antilog = 8.00000000047046
10:log:antilog = 10.0000000005553</p>
    9:log:antilog = 9.0000000010268
<li><var>AntiLog</var> and <var>AntiLogE</var> are object-oriented versions of the <var>[[$Exp]]</var> function.
    10:log:antilog = 10.0000000005553
<li>Available as of <var class="product">Sirius Mods</var> Version 7.3.</ul>
 
==Examples==
==Examples==
 
The following statement returns <code>1:antilog = 2.71828182845905</code>.
The following statement returns ''''1:antilog = 2.71828182845905''''.
<p class="code">[[PrintText statement|printText]] {~} = {1:antilog}</p>
    [[Intrinsic classes#printtext|PrintText]] {~} = {1:antilog}


==See also==
==See also==
[[List of intrinsic Float methods]]
{{Template:Float:Antilog and AntilogE footer}}
 
[[Category: Intrinsic Float methods|AntiLog and AntiLogE function]]
[[Category: Intrinsic methods]]
 
 
 
<!--
<section begin=dpl_desc />
Antilog/exponential base e of number
<section end=dpl_desc />
-->

Latest revision as of 17:12, 2 November 2012

Antilog base e of a number (Float class)


The AntiLog and AntiLogE intrinsic functions return a number that is the natural anti-logarithm (or exponential) of the method object value. The result is the natural logarithmic base () raised to the power of the method object value.

AntiLog and AntiLogE are synonyms.

Syntax

%number = float:Antilog

%number = float:AntilogE

Syntax terms

%number A numeric variable to receive the antilog of the method object.
float A Float value.

Usage notes

  • Although you might expect %x:log:antilog to return the value in %x, the good fit techniques used by the Log and AntiLog methods make the result not quite exact, as shown in the following example:

    2:log:antilog = 2.00000000023047 3:log:antilog = 3.00000000017113 4:log:antilog = 4.00000000047426 5:log:antilog = 5.00000000057644 6:log:antilog = 6.00000000069796 7:log:antilog = 7.00000000056701 8:log:antilog = 8.00000000047046 9:log:antilog = 9.0000000010268 10:log:antilog = 10.0000000005553

  • AntiLog and AntiLogE are object-oriented versions of the $Exp function.
  • Available as of Sirius Mods Version 7.3.

Examples

The following statement returns 1:antilog = 2.71828182845905.

printText {~} = {1:antilog}

See also