added amplifier function

This commit is contained in:
khannuuuuur
2021-12-05 12:40:27 -08:00
parent 7764118c60
commit 52b8f0fc22
4 changed files with 45 additions and 0 deletions

5
src/amplify.m Normal file
View File

@@ -0,0 +1,5 @@
function output = amplify(input, multiplier)
%Amplifies the signal by multiplier
%By Conner Hsu
output = input*multiplier;
end