This commit is contained in:
Loic Delattre 2023-03-24 08:54:08 +01:00
commit f4088cb03f
2 changed files with 0 additions and 11 deletions

BIN
Sound_plot.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -1,11 +0,0 @@
clear all
close all
clc
[y, fs] = audioread("sound/modulator22.wav");
t = [0:1/fs:(length(y)-1)/fs];%%in seconds
plot(t, y);
title ("Sound Wave");
xlabel ("time (s)");
ylabel ("Amplitude (u)");
%audiowrite("sound/output.wav", y, fs*2);