首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Matlab > 离散余弦变换 小波变换 去噪

离散余弦变换 小波变换 去噪

  • 资源大小:3.17 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: Matlab matlab 离散 变换

资 源 简 介

clear all; omega=1000;sigma=20;M=3;c=-3;d=8; Fs=500;T=1.024; t=0:1/Fs:T-1/Fs; L=length(t); signal=sin(omega*t); noise=zeros(1,L); t1=T/2:1/Fs:T-1/Fs; L1=length(t1); w=0.1*randn(1,L1); noise(L-L1+1:L)=w; x=signal+noise; figure(1); subplot(411);plot(t,x); X=fft(x,L); for s=1:M     omega=c+d*s;     for n=1:L         psi(n)=exp(-(n-s*omega)^2/(4*s*omega)^2);     end     WTx(s,:)=((pi/s)^0.5/sigma)*ifft(X.*psi); end subplot(412);plot(t,abs(WTx(1,:)));                %输出尺度为s=1 subplot(413);plot(t,abs(WTx(2,:)));                %输出尺度为s=2  subplot(414);plot(t,abs(WTx(3,:)));                %输出尺度为s=3

文 件 列 表

LMSDCT.m
LMSDFT.m
LMSbasic.m
kalman.m
xiaobo.m
AR.m
VIP VIP
  • 大智若愚 4小时前 成为了本站会员

  • Mason 6小时前 成为了本站会员

  • 7小时前 成为了本站会员

  • Half_Punch 1天前 成为了本站会员

  • liqing71718 1天前 成为了本站会员

  • 伟国 1天前 成为了本站会员

  • songy 1天前 成为了本站会员

  • 纯色幽默 1天前 成为了本站会员

  • odd? 1天前 成为了本站会员

  • 52JOY... 1天前 成为了本站会员

0.171413s