登录
首页 » matlab » 形态滤波降噪

形态滤波降噪

于 2018-07-19 发布 文件大小:32KB
0 308
下载积分: 1 下载次数: 35

代码说明:

  采用形态滤波器去除噪声,分别采用eemd、形态滤波器小波去噪等方法去噪,并对比(choose Morphology filters for analyzing roller bearing fault signal, and compared to the EMD EEMD WT METHODES)

文件列表:

形态滤波降噪\ceemdan.m, 3560 , 2011-06-06
形态滤波降噪\den3.m, 856 , 2015-11-26
形态滤波降噪\emd.m, 22275 , 2007-06-27
形态滤波降噪\emd11.m, 22275 , 2007-06-27
形态滤波降噪\emd22.m, 22276 , 2010-12-03
形态滤波降噪\emd4.m, 1085 , 2017-10-22
形态滤波降噪\Garrote_gg.m, 177 , 2015-11-21
形态滤波降噪\quzao_fangzhen.m, 1439 , 2015-11-20
形态滤波降噪\quzao_fangzhen_1.m, 2050 , 2015-11-20
形态滤波降噪\quzao_fangzhen_2.m, 5407 , 2018-07-05
形态滤波降噪\quzao_fangzhen_3.m, 3363 , 2018-07-06
形态滤波降噪\quzao_fangzhen_4.m, 3748 , 2015-11-22
形态滤波降噪\quzao_fangzhen_5.m, 5814 , 2018-07-10
形态滤波降噪\woaiyuan.m, 1506 , 2015-11-26
形态滤波降噪\xiaobobao_quzao.m, 1547 , 2015-11-26
形态滤波降噪\说明.txt, 123 , 2018-07-19
形态滤波降噪\调试雏形.m, 1436 , 2015-11-26
形态滤波降噪, 0 , 2018-07-19

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SServer
    这个demo是一个twain协议实现的demo(This demo is a demo implemented by Twain protocol)
    2020-06-19 22:00:01下载
    积分:1
  • TabCtrl
    Windows Tab Control VS6 MFC
    2015-08-02 03:13:10下载
    积分:1
  • combolocx
    combobox更新的一个控件(update a combobox controls )
    2004-11-19 14:22:41下载
    积分:1
  • UdpTest
    说明:  UDP测试工具VC源代码,可以用十六进制或文本格式来发送,且支持批量 ,是一个测试工具的源代码。(The UDP test tool VC source code can be sent in hexadecimal or text format, and it supports batch.)
    2020-04-05 13:36:45下载
    积分:1
  • zxing-master.zip.download
    一个二维码的扫描插件,里面有很多实际的例子,能够简便开发(A little thing for IOS QRcode development)
    2014-08-08 14:39:08下载
    积分:1
  • 8
    说明:  8. 单径瑞利信道中的四发四收V-BLAST: (1) 请设计一种具体的导引辅助的信道估计方法,用Simulink进行仿真,测量16QAM调制时的误码率性能。画出比特信噪比与信道估计均方误差的关系曲线,画出比特信噪比与误码率的关系曲线。 (2) 计算所设计方案的频谱效率是多少,单位为bit/Hz/s。(8. Four transmit four receive v-blast in single-path Rayleigh channel: (1) please design a specific navigation-assisted channel estimation method and conduct simulation with Simulink to measure the bit error rate performance of 16QAM modulation.The relation curve between the bit signal-noise ratio and the mean square error of channel estimation is drawn, and the relation curve between the bit signal-noise ratio and the bit error rate is drawn. (2) calculate the spectral efficiency of the designed scheme in bit/Hz/s.)
    2019-01-15 11:01:23下载
    积分:1
  • lesson-12
    孙鑫VC++教学课程lesson12:const char *与char * const的区别。C语言对文件读写的支持,FILE指针;文本文件和二进制文件的区别。用文本方式读写文件和以二进制方式读写文件的注意事项。C++对文件读写的支持,ofstream和ifstream的用法。Win32 SDK对文件读写的支持,CreateFile函数、WriteFile函数、ReadFile函数的使用;MFC对文件读写的支持,CFile类和CFileDialog的使用,文件过滤器的设置。win.ini文件和注册表的读写方式及相关知识点。 (Sun Xin VC++ tutorial lesson12: const char* char* const distinction. C language support for file read and write, the FILE pointer difference between text files and binary files. Way to read and write files with text and Note to the binary mode read and write files. The C++ support, ofstream and ifstream usage of file read and write. Win32 SDK file read and write support for the use of the CreateFile function, WriteFile function, ReadFile function the MFC file reading and writing support use CFile class and CFileDialog file filter settings. win.ini file and read and write registry and related knowledge points.)
    2013-04-02 10:13:49下载
    积分:1
  • bpsk_Awagn_Rayleigh
    说明:  实现了一个直接扩频系统,使用BPSK作为调制解调方法。并比较白噪声AWGN及瑞利衰落(rayleigh fading)环境下,误码率的影响。(There are two files in the zip folder. bpsk_spread.m and jakesmodel.m Steps for simulation: 1] Run jakesmodel.m first 2] Then run bpsk_spread.m . 3] Note that during the first run bpsk_spread.m has no rayleigh fading.This is because the corresponding code has been commented 4] The resulting performance is stored in BER_awgn. 5] Now uncomment the Rayleigh Fading code in bpsk_spread.m file. 6] Same time comment BER_awgn (line 112) and uncomment BER_ray variable. 7] Run the simulation. To compare the perfromances of the receiver using DSSS plot the BER_awgn and BER_ray >>semilogy([1:8],BER_awgn(1:8), g* ) hold on semilogy([1:8],BER_ray(1:8), -.b* ) hold on grid on )
    2010-03-22 23:11:17下载
    积分:1
  • atlppc
    WTL 7.1 and higher PPC classes and functions in atlppc.h enjoy it!(WTL 7.1 and higher PPC classes and function 's in atlppc.h enjoy it!)
    2007-05-06 16:17:13下载
    积分:1
  • ICA_English_Tutorial_Word_File
    Imperialist Competition Tutorial - English
    2013-04-26 21:15:00下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载