Gast
#1543809
Hallo
Ich habe eine wav datei und will folgende aufgaben dazu machen:
1.Time domain analysis
- read sound file
- plot waveform
- produce sound
erste frage Time domain analysis muss ich dies dann umwandeln?
das hab ich bis nun gemacht:
[y,fs,nBits,opts]=wavread(DSP(09)_DF.wav')
t=(0:length(y)-1)/fs;
plot (t,y)
xlabel('Time(sec)')
ylabel('Amplitude(V)')
sound (y,fs)
