代码搜索:小信号
找到约 10,000 项符合「小信号」的源代码
代码结果 10,000
www.eeworm.com/read/367675/2833270
txt 3.txt
发信人: ashun (阿顺), 信区: DataMining
标 题: 孟小峰先生谈面向Internet的数据挖掘技术
发信站: 南京大学小百合站 (Mon Aug 27 09:54:11 2001)
数据挖掘走向Internet
——孟小峰先生谈面向Internet的数据挖掘技术
www.eeworm.com/read/367675/2836175
txt 58.txt
发信人: ashun (阿顺), 信区: DataMining
标 题: 孟小峰先生谈面向Internet的数据挖掘技术
发信站: 南京大学小百合站 (Mon Aug 27 09:54:11 2001)
数据挖掘走向Internet
——孟小峰先生谈面向Internet的数据挖掘技术
www.eeworm.com/read/268860/11117680
m exam9_17.m
% 定义带宽和中心频率
fb = 1.5; fc = 1;
% 设置有效支撑和网格
lb = -8; ub = 8; n = 1000;
% 计算复Morlet小波cmor1.5-1
[psi,x] = cmorwavf(lb,ub,n,fb,fc);
% 画出复Morlet小波
subplot(211)
plot(x,real(psi)),
title('复Morlet小波cm
www.eeworm.com/read/300378/13917092
m program_09_17.m
% 定义带宽和中心频率
fb = 1.5; fc = 1;
% 设置有效支撑和网格
lb = -8; ub = 8; n = 1000;
% 计算复Morlet小波cmor1.5-1
[psi,x] = cmorwavf(lb,ub,n,fb,fc);
% 画出复Morlet小波
subplot(211)
plot(x,real(psi)),
title('复Morlet小波cm
www.eeworm.com/read/300378/13917094
m program_09_11.m
% 设置小波名称和计算次数
iter = 10;
wav = 'sym4';
% 用迭代算法计算小波函数的近似值
for i = 1:iter
[phi,psi,xval] = wavefun(wav,i);
plot(xval,psi);
hold on
end
title('小波函数sym4的近似值(iter从1到10) ');
hold
www.eeworm.com/read/132548/14084210
m cwq.m
%小波分析进行图象压缩
clear
%装入图像
load gatlin;
%显示图像
subplot(221);
image(X);
colormap(map);
title('原始图像');
axis square
disp('压缩前图像X 的大小')
whos('X')
%对图像用小波进行层小波分解
[c,l]=wavedec2(X,2,'bior3.7');
www.eeworm.com/read/234996/14089787
m exam9_17.m
% 定义带宽和中心频率
fb = 1.5; fc = 1;
% 设置有效支撑和网格
lb = -8; ub = 8; n = 1000;
% 计算复Morlet小波cmor1.5-1
[psi,x] = cmorwavf(lb,ub,n,fb,fc);
% 画出复Morlet小波
subplot(211)
plot(x,real(psi)),
title('复Morlet小波cm
www.eeworm.com/read/291731/8401685
m 空域相关滤波.m
%%%%%%%%%%%%%%%%%%%%%%%%%空域相关滤波%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%参考文献:
%Wavelet transform domain filters:a spatially selective noise filtration technique
%不能选正交小波,文献中提出用二次样条小波(quadratic-spli
www.eeworm.com/read/284781/8899152
m 例程9-22.m
% 设置有效支撑和网格参数
lb = -5; ub = 5; n = 1000;
% 计算并画出 Mexican hat小波
[psi,x] = mexihat(lb,ub,n);
plot(x,psi);
title('Mexican hat 小波')
www.eeworm.com/read/284207/8953965
m 例程9-22.m
% 设置有效支撑和网格参数
lb = -5; ub = 5; n = 1000;
% 计算并画出 Mexican hat小波
[psi,x] = mexihat(lb,ub,n);
plot(x,psi);
title('Mexican hat 小波')