Added helper functions for scalability. App functions is 80 percent complete. Requires Pitch Envelope and LFO to fully complete testing.
9 lines
243 B
Mathematica
9 lines
243 B
Mathematica
function output = AmpEnvelopeSelect(input, Fs, attack,decay,sustain,release,number)
|
|
if(number == "Option 1")
|
|
output = DarellAmplitudeEnvelope(input, Fs, attack,decay,sustain,release);
|
|
else
|
|
output = input;
|
|
end
|
|
end
|
|
|