2-Op Math

2-operand math functions

This module offers 2-operand math functions. You can select the function via the dropdown menu by clicking on the function name.

Selectable functions are:

add: Add input values (a+b)

sub: Subtract input values (a-b)

mul Multiply input values (a*b)

div: Divide input values (a/b). If input b = 0, the output is NaN

mod: Modulo operator (a%b). If input b = 0, the output is NaN (Wikipedia)

pow:Power function (a^b)

log: Logarithm function, where b is the base (log_b(a))

atan2: 2-argument arctangent (Wikipedia)

hypot: Length of the hypotenuse (sqrt(a^2 + b^2))

min: Return the minimum of a and b

max: Return the maximum of a and b

IMPORTANT: Functions are evaluated from top to bottom, so if you want to use the result of function A in function B, function A has to be above function B.

If you have any module specific questions, please visit the Monkey Business Audio forum. For questions about Voltage Modular in general, please visit the Cherry Audio forum. If you don't want to ask your question in the forum you can send me a pm or an email.