updated FilterSelect

This commit is contained in:
TurtleEmperorx
2021-12-09 18:56:30 -08:00
parent eebe4150c6
commit 215d9e2b9f
3 changed files with 58 additions and 0 deletions

View File

@@ -19,6 +19,10 @@ function output = FilterSelect(input,Fs,LOW,MED,HIGH,number)
output = seperate_prevalent_schluep(input, Fs, LOW, MED, HIGH);
elseif(number == "Option 6")
output = bandreject_filter(input, Fs, LOW, HIGH);
elseif(number == "Option 7")
output = AnuragEnhanceTarget(input, Fs, LOW,MID, HIGH);
elseif(number == "Option 8")
output = AnuragDampenTarget(input, Fs, LOW,MID, HIGH);
else
output = input;
end