Math f(…)

Evaluates a math expression across all of the input items at once. A full expression reads the items as a, b, c, …, while a math operator or N-argument function name (like * or min) applies across every item.

Boolean items read as 0 or 1, and a boolean output requires the expression to produce exactly 0 or 1, since any other number is not a truth value.

Interface

Inputs

ParameterDetailsPossible Types
Values

The items the expression reads.

Primary Input

bool[]
f32[]
f64[]
f(…) =

The expression evaluated over the items, such as a * b + c, or a lone operator or function applied across all of them.

Default: ""

String

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

f64
f32
bool