Feeds
질문
Facing error in generalizing hamming window.
%Reading the audio y=audioread('speech.wav'); %sound(y); subplot(2,3,1); plot(y); xlabel('Samples'); ylabel('Magnitude'); ...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
How to make a unit energy signal?
y=audioread('speech.wav'); subplot(2,3,1); plot(y); xlabel('Samples'); ylabel('Magnitude'); title('Original speech signal')...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
How to shift the graph?
y=audioread('speech.wav'); subplot(2,3,1); plot(y); xlabel('Samples'); ylabel('Magnitude'); title('Original speech signal')...
3년 초과 전 | 답변 수: 2 | 0
2
답변질문
How to divide spectrogram in bands according to y-axis?
y=audioread('speech.wav'); subplot(2,3,1); plot(y); spectrogram(y,[],[],[],fs,'yaxis'); This code will help me to plot the...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
What is the x-axis in fft() command?
y=audioread('speech.wav'); subplot(2,3,1); plot(y); xlabel('Samples'); ylabel('Magnitude'); title('Speech signal'); %Tak...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
Why my fft graph gives different output on again running the code?
y=audioread('speech.wav'); %sound(y); subplot(2,3,1); plot(y); xlabel('Samples'); ylabel('Magnitude'); title('Original spe...
3년 초과 전 | 답변 수: 1 | 0
