This repository has been archived on 2023-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ece45-project/src/Select/AmpEnvelopeSelect.m
Arthur Lu 0c3ab691e1 dynamic menu dropdowns,
renamed functions in Select,
moved not working functions to NotWorking
2021-12-10 15:12:16 -08:00

17 lines
350 B
Matlab

%Written by Darell
% CONTRIBUTORS:
% Person1: Darell
% DOCUMENTATION:
%Pass-through function used by app
function output = AmpEnvelopeSelect(input, Fs, attack,decay,sustain,release,number)
if(number == "Linear")
output = DarellAmplitudeEnvelope(input, Fs, attack,decay,sustain,release);
else
output = input;
end
end