Remap paramerters with scale values

Hello,
I have a question,

Il would like to use multipliers to scale up or down custom parameters.
In my current patch, I am multiplying the current value of the custom parameter with a multiplier range from 0 to 2.

Works fine, but I want the output of the multiplication (null2) to always stay within the range of the custom parameter (scale from 1 to 4). So if my current value is already 4, multiplying by 2 would have no effect, and the multiplication range from 0 to 2 would output values from 1 to 4.
Basically need to take in account the current value to define the multiplication range i think…

Attached is the .tox
Thanks
multiplication-help.tox (1.01 KB)

After your math CHOP use a limit CHOP set to clamp. This will let you constrain your values inside of a range. If you want to use the min / max vals set in your custom parameter you can use an expression like one of the following in your limit CHOP:

[code]op(‘mutlipliers1’).par.Axisx.normMin

or

op(‘mutlipliers1’).par.Axisx.min[/code]

Thanks Matthew that was the expression I was looking for ! :slight_smile: