登录
首页 » matlab » 小波分频

小波分频

于 2017-11-11 发布 文件大小:3495KB
0 143
下载积分: 1 下载次数: 18

代码说明:

  运用小波分析把地震波分频,选取4阶db为母小波,可以进行多次分频,减小分频误差(The wavelet analysis is used to divide the seismic wave frequency and select the 4 order DB as the mother wavelet, which can be divided into several times to reduce the frequency division error)

文件列表:

小波分频\1.txt
小波分频\ab2.mat
小波分频\fp205.m
小波分频\nanbei.txt
小波分频\shurushuju.m
小波分频\shuxiang.txt
小波分频\分频后的结果
小波分频\分频后的结果\aa8.txt
小波分频\分频后的结果\fuliyepu.m
小波分频\分频后的结果\gg1.txt
小波分频\分频后的结果\gg2.txt
小波分频\分频后的结果\gg3.txt
小波分频\分频后的结果\gg4.txt
小波分频\分频后的结果\gg5.txt
小波分频\分频后的结果\gg6.txt
小波分频\分频后的结果\gg7.txt
小波分频\分频后的结果\gg8.txt
小波分频\计算步骤1.doc

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

发表评论

0 个回复

  • SmartHome
    完整的QT界面设计,模拟智能家居控制,模拟串口(Complete design of QT interface, simulation of smart home control, simulation of serial port)
    2019-06-15 23:45:22下载
    积分:1
  • MMC.voice
    This is the design of a application which drive an AVR mcu to record and broadcast WAV voice stored in an Memory card.
    2012-05-17 03:32:40下载
    积分:1
  • 加减计算器
    (1) 加减数和被加减数的输入位数为1-4位; (2) 相加结果显示要考虑进位的输出显示(即5位输出); (3) 注意对“0”—“9”、“+”、“=”以外按键输入的处理; (4) 注意对相加结果进行十进制处理; (5) 输入加数和被加数时,显示器上显示的数字要像平时用的计算器输入一样,即:每输入一个数字,原来显示的数字要往左移; (6) 可以完成累加功能。((1) The input digits of the additions and subtractions and the additions and subtractions are 1-4 digits; (2) The additive result shows that the carry output display (i.e. 5-bit output) should be considered. (3) Attention should be paid to the processing of keyboard input other than "0"-"9", "+" and "="; (4) Attention should be paid to decimal processing of the additive results. (5) When the additive and the additive are input, the number displayed on the display should be the same as that input by the usual calculator, that is, every number input, the original number displayed should move to the left; (6) Accumulative function can be completed.)
    2020-12-26 15:09:03下载
    积分:1
  • procedures with Java JiuGongTu series of the game program, which is applet, comp...
    用JAVA程序编的九宫棋程序,该程序是applet,请编译后执行-procedures with Java JiuGongTu series of the game program, which is applet, compiled implementation
    2023-08-20 02:35:03下载
    积分:1
  • LabVIEW_dianzicheng
    虚拟电子秤 程序使用说明 1. 本程序只在Windows XP平台上经过完整测试,因此只能保证该程序在WinXP系统下运行正确。 2. 由于本程序使用了Access数据库,因此需要计算机上安装有Microsoft Access。 3. 将本程序下载到本地计算机后,需要建立与用户信息.mdb的ODBC连接。建立方法如下:进入开始菜单->控制面板->管理工具->数据源(ODBC),建立一个新的系统DSN:选择Add…->Microsoft Access Driver(*.mdb),数据源名称为“LVTest_UserDB”,数据库选择用户信息.mdb。点击OK完成设置。 4. 运行虚拟电子秤_陈锡辉.vi,输入用户名:admin,密码:123456 登录系统。进入系统后可以更改密码或管理用户等等。()
    2008-07-07 17:47:23下载
    积分:1
  • LabVIEW
    基于LabVIEW的电能质量分析系统设计 包括登录界面 谐波分析 信号仿真等(LabVIEW-based power quality analysis system design, including the logon interface harmonic analysis and signal simulation)
    2021-01-19 13:28:42下载
    积分:1
  • 红外与可见光图片素材
    图片素材,红外与可见光融合常用素材,已经配准好的。(Image material, infrared and visible light fusion material commonly used, has been registered well.)
    2021-04-06 09:39:02下载
    积分:1
  • table
    说明:  用来创建表结构,其中包含对表字段的解释和命名,其他都随意了。不知道够不够20字(Used to create table structure, which includes the interpretation and naming of table fields, everything else is optional. Do not know enough 20 words)
    2019-02-25 16:43:16下载
    积分:1
  • International Design Competition in the winning entries, forget what year in the...
    国际程序设计大赛的获奖作品,忘记是哪一年的了.反正是相当的牛了.-International Design Competition in the winning entries, forget what year in the past. Because it is quite a cattle.
    2022-02-02 21:23:10下载
    积分:1
  • 设计有理数类rational_number  数据成员: int numerator(分子) int denominator(...
    设计有理数类rational_number  数据成员: int numerator(分子) int denominator(分母)  成员函数 (1)构造函数rational_number ()和rational_number (int x, int y) (2)拷贝构造函数 (3) 重载运算符“+”、“-”、“*”和“/” 2. 设计有理数类rational_number  数据成员: int numerator(分子) int denominator(分母)  成员函数 (1)构造函数rational_number ()和rational_number (int x, int y) (2)拷贝构造函数  友元重载运算符“+”、“-”、“*”和“/” 3. 分别使用以上两个类,完成有理数的加、减、乘、除运算;验证其加运算、乘运算的交换律。 -Rational Design category rational_number
    2023-03-17 02:25:04下载
    积分:1
  • 696518资源总数
  • 104226会员总数
  • 47今日下载