Divide Variadic
Last updated
Last updated
Performs sequential division of multiple numbers, starting with the first value and dividing by each subsequent value. Unlike the basic Divide node which has fixed inputs, this node can accept any number of values for division.
inputs
The list of numbers to divide sequentially
List
No
value
The result of the sequential division
Number
Drag the Divide (Variadic) node into your graph.
Connect any number of numeric values to the "inputs" handle.
Each connected value will automatically be added to the inputs list.
Run the graph—the output will be the first value divided by all subsequent values.
For example, with inputs (100, 5, 20
), the output will be 1
(100÷5÷20
).
You need at least one value for the node to work properly.
Division happens from left to right (first value divided by second, result divided by third, etc.).
Be careful with zero divisors—dividing by zero will cause errors.
Ratio Calculations: Compute ratios involving multiple factors.
Scaling: Sequentially reduce a value by multiple divisors.
Unit Conversions: Apply multiple conversion factors in sequence.
Proportional Distribution: Calculate shares or portions from a total amount.
: The standard division node with two fixed inputs.
: For multiplying multiple values together.
: For adding multiple values together.