Difference between revisions of "Extensions.Math.Power"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | FloatTerm Math.Power(NumericTerm numeral, NumericTerm exponent); | |
− | |||
− | |||
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 09:01, 7 November 2018
Contents
Classification
Name | Power |
Short Description | Power of a number with a certain exponent |
Class | Term |
Extension | OTX Math Extension |
Group | Math related Actions |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
FloatTerm Math.Power(NumericTerm numeral, NumericTerm exponent);
Description
The Power term shall be used for calculating the power of a given number using a given 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 | Numeric | Term | - | [1] | The numeric value of type integer or float, on which the power is calculated. |
Exponent | Numeric | Term | - | [1] | The numeric value of type integer or float, which will serve as an exponent in the calculation. |
OTL Examples
/// Local Declarations
Float Float1;
/// Flow
Float1 = Math.Power(1, 2);