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/OffsetSelect.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

20 lines
368 B
Matlab

%Written by Darell
% CONTRIBUTORS:
% Person1: Darell
% DOCUMENTATION:
%Pass-through function used by app
function output = OffsetSelect(input,value,number)
if(number == "Echo")
output = Meghaj_Echo(input, value);
elseif(number == "PitchOffset")
output = Petha_Hsu_PitchOffset(input, value);
else
output = input;
end
end