登录
首页 » matlab » 经验模态分解方法

经验模态分解方法

于 2021-01-28 发布
0 215
下载积分: 1 下载次数: 3

代码说明:

说明:  本文件提供处理信号的常用算法,经验模态分解方法,对于信号的处理具有很好的处理效果(This document provides common algorithms for processing signals, empirical mode decomposition methods, and has a good effect on signal processing)

文件列表:

经验模态分解方法, 0 , 2021-01-18
经验模态分解方法\dist_value.m, 847 , 2010-07-06
经验模态分解方法\eemd.m, 2004 , 2010-07-06
经验模态分解方法\extrema.m, 2180 , 2010-07-06
经验模态分解方法\ifndq.m, 1818 , 2010-07-06
经验模态分解方法\significance.m, 2938 , 2010-07-06
经验模态分解方法\test.m, 282 , 2015-01-11
经验模态分解方法\ts11.dat, 56733 , 2010-05-11
经验模态分解方法\温度偏差数据.mat, 7499 , 2020-12-10

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

发表评论

0 个回复

  • bank
    模拟实现了银行系统的各种业务,转账 存款 取款 修改密码等(Simulated realization of various business of banking system)
    2020-06-24 06:40:02下载
    积分:1
  • deituiCMS_feilei_v1.3
    说明:  在线上门O2O系统,,PC+WAP+微信端等功能,在BAOCMS基础上二次开发的东西内核是BAOCMS 最新版内核,修复了所有的功能BUG,本源码可以微信支付定金,可以申请退款,商户端可以操作退款,操作接单等等……功能高级,版面完美,含员工端抢单、商户端管理、外卖、酒店、农家乐、跑腿等等功能,支持分站(On-line door-to-door O2 O system, PC+WAP+micro-messenger and other functions, on the basis of BAOCMS, the second development of the East-West Core is the latest version of BAOCMS kernel, repair all the functions of BUG, the source code can pay deposit by Wechat, can apply for refund, business end can operate refund, operation order, etc. High-level functions, perfect layout, including staff side to grab orders, business end management, takeout, hotels, farmhouse music, running errands and other functions, support sub-stations)
    2020-06-21 01:40:02下载
    积分:1
  • TestForWeChat
    说明:  可以捕捉微信窗口,并且可以实现定时的消息发送(It can capture wechat window and send messages regularly)
    2021-01-01 20:59:03下载
    积分:1
  • xieboyuan - 副本
    matlab谐波源仿真,作APF电流检测以及控制所需(matlab Harmonic source simulation)
    2019-04-15 14:46:02下载
    积分:1
  • dore
    24点游戏,相信大家都玩过 这里给出一个c++算法实现计算机运算()
    2018-05-24 17:06:33下载
    积分:1
  • wenjianmanager
    说明:  An Android File Manager source code that supports decompression can also be used for routine operations such as copying, moving, deleting and renaming. When compressing files, they can only be compressed into ZIP format, not rar format. Decompression also supports ZIP format tightly. Source code has more detailed annotations.
    2020-06-22 19:40:02下载
    积分:1
  • VB彭曼
    用于计算潜在蒸发量,是一个很好的程序。推荐大家用该数据计算流域的潜在蒸发量。(It is a good program to calculate the potential evaporation. It is recommended to use this data to calculate the potential evapotranspiration of the basin.)
    2018-03-19 11:19:27下载
    积分:1
  • Stata-内生性检验
    说明:  stata做时间序列数据( Time series data ),截面数据( Cross-sectional data )和面板数据( Panel data )的内生性检验(Stata tests the endogeneity of time series data, cross-sectional data and panel data)
    2020-06-16 21:00:54下载
    积分:1
  • 高频地波雷达对于天基海杂波的仿真,中有一阶海杂波和二阶海杂波的仿真,对初学者很有帮助...
    高频地波雷达对于天基海杂波的仿真,其中有一阶海杂波和二阶海杂波的仿真,对初学者很有帮助-HF ground wave radar clutter simulation for the DMH days, including a first-order sea clutter and second-order sea clutter simulation, very useful for beginners
    2022-07-02 12:00:17下载
    积分:1
  • VHDL电子时钟
    用VHDL实现的电子时钟,24小时格式,可以通过按键调整时间得益于数电知识中的计数器级联构成高进制计数器的启发,我的思路是这样的:1)各不同位的时钟问题。时钟共有6位,分别为秒的高低位、分的高低位、时的高低位。把秒低位的进位当作秒高位的时钟,秒高位的进位当作分低位的时钟,依次类推,可以解决不同位的不同时钟问题。2)各不同位的进制问题。与此同时要解决进制问题,秒分的低位为十进制,秒分的高位为六进制,以及时的高位为三进制(电子时钟为24小时制),这五种情况都易解决,但时的低位就有点复杂了,既有十进制的情形又有四进制的情形。仔细琢磨之后,根据两条IF语句解决了这个问题。那就是若小时高位为”0000”或”0001”时,时的低位为十进制,若小时高位为”0010”,时的低位为四进制。3)校时问题。刚开始时,对了校时没有个思路。但有一次我想看看整体进制等对不对,于是把整体时钟调快了很多,这样,很快就走了“24”小时,然后灵感就来了,就想可以设置这么两个不同频率的整体时钟,一个可能控制分,一个可以控制小时,然后为了可以精确到秒,又设置了一个可以让整个时钟系统暂停的按键,这样整个时钟的实现就完成了,最后又在时分和分秒中间加入了一个小横杠”-”。
    2023-08-22 19:40:04下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载