How can I write a function about upsampling in DSP

3 ビュー (過去 30 日間)
Ahmet SENGEZ
Ahmet SENGEZ 2014 年 6 月 28 日
回答済み: Daniel kiracofe 2014 年 6 月 28 日
I have an recorded speech signal(.wav) with 8kHZ and 8bits.I want to upsample the signal by 2,and then pass the upsampled signal through a LP filter with having cut-off frequency 4kHz.

回答 (1 件)

Daniel kiracofe
Daniel kiracofe 2014 年 6 月 28 日
resample() work might for you to upsample the data.
Filtering in matlab is a two step process. First, you have to design the filter that you want to use. Then, you use the filter on your data. Assuming your sampling frequency is in the variable Fs, and your desired cutoff frequency is Fc, then the most simple filter command would be these two lines:
[b,a] = butter(1, Fc/Fs); filtered_data = filter(b,a,data);
The variables b and a represent the coefficients of the filter in transfer function format. You can basically ignore those.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by