Merge branch 'main' into DarellsAnnex

This commit is contained in:
Arthur Lu 2021-12-01 16:07:46 -08:00 committed by GitHub
commit eb6b9aaaa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 4 deletions

View File

@ -1,11 +1,26 @@
# ece45-project
# ECE45-project
Audio synthesizer project created by ECE 45 students, written using the MATLAB language and MATLAB GUI
Will add member names shortly
## Function Prototypes
fuction x = envelope(input, fs, period, attack , decay, sustain, release)
where attack, decay, sustain release are percentages between 0 to 1 of the period
where period is the time in seconds
function x = generate_wave(amplitude, frequency, phase, fs, duration, duty)
function output_timedomain = Filter(input_soundin_timedomain, Fs, LOW, MED, HIGH)
where LOW, MED, HIGH are user-selected variables of any value
where LOW, MED, HIGH are user-selected variables of any value
## Useful websites
- https://learningsynths.ableton.com
- https://learningsynths.ableton.com/en/playground
- https://blog.demofox.org/diy-synthesizer/
- http://portaudio.com/
- https://ccrma.stanford.edu/software/stk/
- https://cycling74.com/products/max
- http://msp.ucsd.edu/software.html

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
%phase shift is in number of periods
x = zeros(1, fs * duration);