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.

Syntax

MIN(Node1Node2)

Parameter

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


Example

Input A =

Year

Value

2019

32

2020

-42

2021

-17


Input B =

Year

Value

2019

41

2020

12

2021

-25


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

Year

Value

2019

32

2020

-42

2021

-25


Output MIN('A', 12) =

Year

Value

2019

12

2020

-42

2021

-17