Min

Computes the minimum value of two tables.

Inputs

lhs
A real value table.
rhs
A real value table.

Outputs

answer
A destination table to store the minimum of lhs and rhs.

Comments

When a corresponding value in one table is not found in the other, this operator returns the existing value.

Syntax

min(lhs, rhs)

XML Example

<call name="Min" lhs="lhs_tab" rhs="rhs_tab" answer="dest_tab" />