As the title says I would like to gradually change the oscillator’s output from one waveform to another, rather than simply switching from for example a triangle to a square wave.
This is for a project where I am trying to recreate a Synth, below is a copy and paste from the manual.
Unlike most synths, which simply switch between basic waveforms, the Sub Phatty allows you
to gradually change the oscillator’s output from one waveform to another, so it can generate
something partway between a sawtooth and a square wave, for example. We refer to such controls as
continuously variable because there are no discrete steps between settings.
So far I had something like this,
iMode = chnget:i(“Mode”)
aOSC1 vco2 p5, p4, iMode //where mode can be 10 for square wave, 12 for triangle etc…
That was fine for switching from one to another. So to achieve something in between waveforms I began looking into using gentables but am unsure of what parameters I would need to control to gradually change between waveforms.
In short, I am pretty lost and just need pointing in the right direction on how to go about this.