Created a Pitch Envelope

App updated to work with pitch envelope. Works with Harmonic Offset. Added Equalizer GUI elements.

Still does not work with LFO and does not work with Equalizer.
This commit is contained in:
Darell Chua Yun Da
2021-12-07 07:25:21 +08:00
parent ef5b43b354
commit 0984b75d36
6 changed files with 125 additions and 3 deletions

8
src/FilterSelect.m Normal file
View File

@@ -0,0 +1,8 @@
function output = FilterSelect(input,Fs,LOW,MED,HIGH,number)
if(number == "Option 1")
output = DarellbandpassFilter(input,Fs,LOW,MED,HIGH);
else
output = input;
end
end