Divide Variadic

What It Does

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

Name
Description
Type
Required

inputs

The list of numbers to divide sequentially

List

No

Outputs

Name
Description
Type

value

The result of the sequential division

Number

How to Use It

  1. Drag the Divide (Variadic) node into your graph.

  2. Connect any number of numeric values to the "inputs" handle.

  3. Each connected value will automatically be added to the inputs list.

  4. Run the graph—the output will be the first value divided by all subsequent values.

  5. For example, with inputs (100, 5, 20), the output will be 1 (100÷5÷20).

Tips

  • 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.

See Also

Use Cases

  • 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.

Last updated