independent component analysis using kurtosis:after this how to seperate the original signal from noisy signal...using independent component analysis using kurtosis...
1 次查看(过去 30 天)
显示 更早的评论
clc;
clear all;
close all;
Fs = 10000;
fprintf('say a sentence immediately after hitting enter: ');
input('');
x= wavrecord(1 * 10000, 10000, 'double'); % Record and store the uttered speech
t=(0:(1*10000)-1)*1/(1*10000);
subplot(3,1,1);
plot(x);
b=awgn(x,10,'measured');
subplot(3,1,2);
plot(b);
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!