The `Math` category contains simple mathematical nodes than can be used to make numeric calculations.Add
This node performs an addtion operation on all inputs.Inputs
This node has a variable number of inputs.
- [in 1] - First term in addition calculation.
- [in 2] - Second term in addition calculation.
- [in x] - x-th term in addition calculation. Where x is any subsequent input set from the node settings.
Outputs
- output - Numeric sum of all inputs.
Settings
- Name - Name of the node.
- Inputs Count - Configures the number of inputs.
- in 1/in 2/in x... - Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' + 'in 2' + ...) 'output' is the numeric result of adding of all numeric inputs. Input values can be set from settings. The number of inputs is configurable from settings.Subtract
This node performs a subtraction operation on all inputs.Inputs
This node has a variable number of inputs.
- [in 1] - First term in subtraction calculation.
- [in 2] - Second term in subtraction calculation.
- [in x] - x-th term in subtraction calculation. Where x is any subsequent input set from the node settings.
Outputs
- output - Numeric result of subtracting each subsequent input value in order.
Settings
- Name - Name of the node.
- Inputs Count - Configures the number of inputs.
- in 1/in 2/in x... - Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' - 'in 2' - ...) 'output' is the numeric result of subtracting each numeric input in order. Input values can be set from settings. The number of inputs is configurable from settings.
Multiply
This node performs a multiplication operation on all inputs.Inputs
This node has a variable number of inputs.
- [in 1] - First term in multiplication calculation.
- [in 2] - Second term in multiplication calculation.
- [in x] - x-th term in multiplication calculation. Where x is any subsequent input set from the node settings.
Outputs
- output - Numeric product of all inputs.
Settings
- Name - Name of the node.
- Inputs Count - Configures the number of inputs.
- in 1/in 2/in x... - Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' * 'in 2' * ...) 'output' is the result of multiplying all numeric inputs. Input values can be set from settings. The number of inputs is configurable from settings.
Divide
This node performs a divison operation on all inputs.
Inputs
This node has a variable number of inputs.
- [in 1] - First term in division calculation.
- [in 2] - Second term in division calculation.
- [in x] - x-th term in division calculation. Where x is any subsequent input set from the node settings.
Outputs
- output - Numeric result of dividing each subsequent input value in order.
Settings
- Name - Name of the node.
- Inputs count - Configures the number of inputs.
- in 1/in 2/in x... - Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' / 'in 2' / ...) 'output' is the numeric result of dividing each numeric input in order. Input values can be set from settings. The number of inputs is configurable from settings.
Absolute
This node performs an absolute value operation on the single input value. Absolute value operation changes a negative number to a positive number.Inputs
- in 1 - Input Value
Outputs
- output- Numeric result of absolute value operation.
Settings
- Name - Name of the node.
Operation
('output' = |'in 1'|) 'output' is the absolute value (positive) of the Numeric input.
Modulus
This node performs a modulo operation. The result of a modulo operation is the remainer of the division of the two input terms.
Inputs
- [in 1] - Numerator of division operation. This is the number that is being divided.
- [in 2] - Denominator of division operation. This is the number that the numerator is being divided by.
Outputs
- output - Output is the numeric result of the modulo operation. It is equal to the remainer of dividing `in 1` by `in 2`.
Settings
- Name - Name of the node.
- in 1/in 2- Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' % 'in 2') 'output' is the result of a modulo operation on the numeric inputs. Input values can be set from settings.
Power
This node performs an exponentiation operation on input values.Input
- [in 1] - Base of exponentiation operation.
- [in 2] - Exponent (power) of exponentiation operation.
Output
- output - Numeric result of exponentiation calculation where `in 1` is the base and `in 2` is the exponent.
Settings
- Name - Name of the node.
- in 1/in 2- Input values can be set from settings as a fallback from wired input values.
Operation
('output' = 'in 1' ^ 'in 2') 'output' is the result of 'in 1' to the power of 'in 2'. Input values can be set from settings.