Renamed PitchEnvelope to Amplitude

Misnamed previous file, should be updated now
This commit is contained in:
Darell Chua Yun Da
2021-12-03 12:11:52 +08:00
parent 309e0386e8
commit 757c11d2b8
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ decay = 0.2;
sustain = 0.2;
release = 0.1;
x = DarellPitchEnvelope(x, fs, attack,decay,sustain,release); %output new sound in time domain
x = DarellAmplitudeEnvelope(x, fs, attack,decay,sustain,release); %output new sound in time domain
%play over 5 counts, should only hear 200hz
playtime = 5;
play_continuous(x, fs, playtime)