standardize sine generation

This commit is contained in:
Arthur Lu 2021-12-01 15:44:03 -08:00
parent da20ef83c8
commit 5a484cb6e1

View File

@ -1,4 +1,4 @@
function x = generate_sine(amplitude, frequency, phase, fs, duration) function x = generate_sine(amplitude, frequency, phase, fs, duration, duty)
%GENERATE_SINE:Arthur Lu returns a matrix of sampled sine wave, where the %GENERATE_SINE:Arthur Lu returns a matrix of sampled sine wave, where the
%phase shift is in number of periods %phase shift is in number of periods
x = zeros(1, fs * duration); x = zeros(1, fs * duration);