-
Notifications
You must be signed in to change notification settings - Fork 23
Description
I Propose the following changes for simpler formulas and a better understanding
Instead of
The combination of mixers for a given output channel is defined by the Mux type:
proposed
The combination Cx of mixers 1 to n for a given output channel is defined by the Mux type:
Change proposed for formulas and headings
The formula could take into account one multiply mux only for a better understanding. All muxes do not need to be multiply.
So the formula could refer to the [value resulting from mixers n-1 to 1] and the change by a multiply Mn.
So instead of
For a ‘Multiply’ mux:
Cx = if(\ |Sn|\ ) {\ |Mn|\ } else {1} * if (\ |Sn-1|\ ) {\ |Mn-1|\ } else {1} * … * if (\ |S0|\ ) {\ |M0|\ } else {1}
I propose
For a Mn ‘Multiply’ mux activated by switch Sn:
x = if(\ |Sn active|\ ) {\ |Mn|\ } else {1} * [value resulting from mixers n-1 to 1]
The same process could be used for every formula ( Replace, multply, add, Max and Min)