This commit is contained in:
parent
c895bc1d6a
commit
e8766b03e3
|
|
@ -0,0 +1,10 @@
|
|||
clear all
|
||||
close all
|
||||
pkg load signal
|
||||
[y,fs] = audioread('modulator22.wav');
|
||||
audiowrite('outmodulator22.wav',y,fs/2);
|
||||
n = length(y);
|
||||
t=0:1/fs:(n-1)/fs; % time range
|
||||
downsample(y,4000);
|
||||
spectrogram(y,fs,5,30);
|
||||
[power,duration]=frequencySpectrum(y, fs, false);
|
||||
Loading…
Reference in New Issue