Difference between revisions of "Extensions.Math.Log"

From emotive
Jump to navigation Jump to search
m (Hb moved page Log to Extensions.Math.Log: #3153)
Line 1: Line 1:
[[Category:Math]]
+
{{DISPLAYTITLE:'''Log '''}}[[Category:Math]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | Log | Logarithm of a given number to a given base | [[Term]] | [[Math|OTX Math Extension]] | - | - | - | Yes}}
+
{{ClassificationActivity | Log | Logarithm of a given number to a given base | [[Term]] | [[Extensions.Math|OTX Math Extension]] | - | - | - | Yes}}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 11: Line 11:
 
The '''Log''' term is used for the calculation of the logarithm of a given number on a given base.
 
The '''Log''' term is used for the calculation of the logarithm of a given number on a given base.
  
{{TermReturnValue| [[Float]] | Result of the calculation of the logarithm of a number.}}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.Float|Float]] | Result of the calculation of the logarithm of a number.}}
  
 
== Properties ==
 
== Properties ==
Line 28: Line 28:
  
 
== See also ==
 
== See also ==
[[Power]]<br/>
+
[[Extensions.Math.Power|Power]]<br/>
[[Ln]] <br/>
+
[[Extensions.Math.Ln|Ln]] <br/>
[[Sin]] <br/>
+
[[Extensions.Math.Sin|Sin]] <br/>
[[Cos]] <br/>
+
[[Extensions.Math.Cos|Cos]] <br/>
[[Tan]]
+
[[Extensions.Math.Tan|Tan]]

Revision as of 01:50, 16 February 2016

Classification

Name Log
Short Description Logarithm of a given number to a given base
Class Term
Extension OTX Math Extension
Group -
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

FloatTerm = Math.Log(NumericTerm, NumericTerm);

Description

The Log term is used for the calculation of the logarithm of a given number on a given base.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Float Result of the calculation of the logarithm of a number.

Properties

Name Data Type Class Default Cardinality Description
Numeral - Term - [1] The numerical value (of type Integer or Float), where the logarithm is calculated..
Base - Term - [1] The numerical value (of type Integer or Float), which will serve as the logarithmic basis of the calculation.

OTL Examples

Float Float1;

Float1 = Math.Log(2, 4);

See also

Power
Ln
Sin
Cos
Tan