Basic Overview

Description

Returns the minimum of matching values from two Nodes. Both nodes have to have either the same dimensionality, resulting in a Node with the same dimensionality, or one input needs to be a number, in which case the result has the dimensionality of the other Node.

SyntaxMIN(Node1Node2)
Parameter
  • Node: Input node, specified using the node name in single quotes (e.g. 'Profit')

Example

Input A =

Year

Value

201932
2020-42
2021-17

Input B =

Year

Value

201941
202012
2021-25

Output MIN('A', 'B') =

Year

Value

201932
2020-42
2021-25

Output MIN('A', 12) =

Year
Value
201912
2020-42
2021-17