Semifunctional App

Added helper functions for scalability. App functions is 80 percent complete. Requires Pitch Envelope and LFO to fully complete testing.
This commit is contained in:
Darell Chua Yun Da
2021-12-05 15:14:12 +08:00
parent 757c11d2b8
commit e7fdfda8e3
4 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
function output = PitchEnvelopeSelect(input, Fs, attack,decay,sustain,release,number)
if(number == "Option 1")
output = DarellAmplitudeEnvelope(input, Fs, attack,decay,sustain,release);
else
output = input;
end
end