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개)

카테고리

Help CenterFile Exchange에서 Pulse and Transition Metrics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by