?? program_13_11.m
字號:
%給定一個正弦信號并作圖
t=0:1000;
s=sin(0.03*t);
subplot(3,1,1);
plot(s);
axis([0 1000 -2 2]);
title('原始信號');
%給該信號加噪聲
load noissin;
ns=noissin;
subplot(3,1,2);
plot(ns);
title('染噪信號');
%進行降噪處理
xd=wden(ns,'minimaxi','s','one',5,'db3');
subplot(3,1,3);
plot(xd);
title('消噪信號');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -