Modulating multichannel signal list, manually include index that stays and doesn't modulate
so i have a list of lets say 10 modulating signal using a mc.generate (so e.g. a ease.in_exponential function, that modulates it's "center/peak")
now i want to manually input values into the signal list that stay where they are, so e.g. signal nr1 should stay at amplitude 0.6 all the time, ignoring being modulated, or in simpler terms, the modulating signal should be ignored and replaced by a simple sig.-object.
i hope this makes sense.
anyone got any ideas? :)
Simply multiply the output of [mc.generate~] by a list of 0s (don't modulate) and 1s (modulate):
@TFL thank a lot! yes i found that solution too now :D i did it within mc.gen and a switch object, meaning if that fixed value is equal to 0, there won't be any replacing the modulating signal. If the fixed value is adjusted, meaning goes above 0, the switch will output the fixed signal instead. Works pretty neatly ^^thank you!