Skip to content

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

NameDescriptionTypeRequired
inputsThe list of numbers to divide sequentiallyListNo

Outputs

NameDescriptionType
valueThe result of the sequential divisionNumber

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.