Extreme
Computes the extreme value of two tables.
Inputs
- lhs
- A real value table.
- rhs
- A real value table.
Outputs
- answer
- A destination table to store the extreme of lhs and rhs.
Comments
- Extreme returns the absolute value between lhs and rhs, preserving the sign (the value furthest from 0.0).
- When a corresponding value in one table is not found in the other, this operator returns the existing value.
Syntax
extreme(lhs, rhs)XML Example
<call name="Extreme" lhs="lhs_tab" rhs="rhs_tab" answer="dest_tab" />