Power
Stores src raised to the power of exp in answer.
Inputs
- src
- A value table.
- exp
- The exponent.
Outputs
- answer
- A value table.
Comments
- src and answer must be of the same binding and format.
- If a value in src is large enough to cause a floating-point overflow, no record will be added to answer.
- If src is a constant value table (created by the Constant operator), no records will be added to the answer table.
Syntax
src ^ expXML Example
<call name="Power" src="src_tab" exp="3" answer="ans_tab" />