Difference between revisions of "Extensions.Math.Power"
Jump to navigation
Jump to search
m (Hb moved page Power to Extensions.Math.Power: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Math]] | + | {{DISPLAYTITLE:'''Power '''}}[[Category:Math]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | Power | Power of a number with a certain exponent | [[Term]] | [[Math|OTX Math Extension]] | - | - | - | Yes}} | + | {{ClassificationActivity | Power | Power of a number with a certain exponent | [[Term]] | [[Extensions.Math|OTX Math Extension]] | - | - | - | Yes}} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''Power''' term is used to calculate the power of a number with a specific exponent. | The '''Power''' term is used to calculate the power of a number with a specific exponent. | ||
− | {{TermReturnValue| [[Float]] | Result of power calculations.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.Float|Float]] | Result of power calculations.}} |
== Properties == | == Properties == | ||
Line 28: | Line 28: | ||
== See also == | == See also == | ||
− | [[Log]]<br/> | + | [[Extensions.Math.Log|Log]]<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:48, 16 February 2016
Contents
Classification
Name | Power |
Short Description | Power of a number with a certain exponent |
Class | Term |
Extension | OTX Math Extension |
Group | - |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
FloatTerm = Math.Power(NumericTerm, NumericTerm);
Description
The Power term is used to calculate the power of a number with a specific exponent.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Float | Result of power calculations. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Numeral | - | Term | - | [1] | The numeric value of type integer or float, on which the power is calculated. |
Exponent | - | Term | - | [1] | The numeric value of type integer or float, which will serve as an exponent in the calculation. |
OTL Examples
Float Float1;
Float1 = Math.Power(1, 2);