登录
首页 » matlab » BlindDeconvolution

BlindDeconvolution

于 2020-11-06 发布
0 127
下载积分: 1 下载次数: 5

代码说明:

说明:  对声呐接收到的信号进行解卷积,还原原始信号 仿真条件:假设有三条传播路径,海底反射、海面反射、直达波(The signal received by sonar is deconvoluted to restore its original signal. Simulation conditions: it is assumed that there are three propagation paths, bottom reflection, sea surface reflection and direct wave)

文件列表:

BlindDeconvolution, 0 , 2020-01-03
BlindDeconvolution\1053_UACE2017.pdf, 861484 , 2017-09-08
BlindDeconvolution\BlindDeconvolutionxx1.m, 9199 , 2019-01-02

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

发表评论

0 个回复

  • LED一体箱开发包_V3.9.1.4329_20171031
    说明:  【声明】 此次版本测试 在对 LED03/EP-YTX030 /EP-YTX031,PT-V500/EP-G200/EP-G210 型号做 RS-485通信时 发现有丢包情况,建议客户采用 RJ45传输模式进行控制。如果客户强制使用 RS-485通信,可自己控制 发送指令间隔在200ms以上,可减少丢包率,但是建议客户慎重选择。 V3.9.1.4329_20171031 更新 1、更改 设置音量大小函数参数,规定音量大小的范围在 0-10之间。 2、更改 EP-YTX030 /EP-YTX031 ,PT-V500/EP-G200/EP-G210,型号控制时,CPU占用过高的问题。 V3.8.1.4156_20171019 更新 1、修改了RS-485传输的方式,修正了LED03/EP-YTX030 /EP-YTX031,PT-V500/EP-G200/EP-G210,EP-YTX004等型号使用485通信时丢包的问题。 2、修改EPIntegrateBox.ini配置文件说明,更改该文件位置目录为:C盘***AppDataLocaleparkingEParkingManage目录下。 3、修改了LED03/EP-YTX030型号相机透传时一体机和相机都控制抬杆的BUG。 4、增加对EP-YTX004一体箱的支持。 5、添加了对EP-YTX030 /EP-YTX031,PT-V500/EP-G200/EP-G210,EP-YTX004等型号的音量调节功能接口。001不支持修改,002和004音量直接修改到卡,030记录到配置文件。(This version of the test in the LED 03/EP-YTX030/EP-YTX031, PT-V500/EP-G200/EP-G210 model RS-485 communication It is suggested that customers use RJ45 transmission mode to control packet loss. Customers can control themselves if they are forced to use RS-485 communication. Sending instructions at intervals of more than 200 ms can reduce packet loss rate, but customers are advised to choose carefully. V3.9.1.4329_20171031 Update 1. Change the parameters of setting volume size function to specify the range of volume size between 0 and 10. 2. Changing EP-YTX030/EP-YTX031, PT-V500/EP-G200/EP-G210, the problem of excessive CPU usage in model control. V3.8.1.4156_20171019 Update)
    2020-06-24 17:20:01下载
    积分:1
  • wavelet.Designer
    说明:  CRT需要添加很多设备时,正常要一个一个添加,这个工具可以用一个为模板(When CRT needs to add many devices, it is normal to add one by one. This tool can be used as a template.)
    2020-06-25 08:00:02下载
    积分:1
  • 插值与拟合
    文件是用于MATLAB编程中常用的数据插值和拟合的代码。(File is the code for data interpolation and fitting commonly used in MATLAB programming.)
    2020-06-25 09:40:02下载
    积分:1
  • SW297851
    NFC smart card reader
    2020-06-25 16:00:02下载
    积分:1
  • demo
    永磁同步电机DSP2812控制程序代码(PMSM),20字(Program Control Code of Permanent Magnet Synchronous Motor DSP2812)
    2020-06-19 08:20:02下载
    积分:1
  • rdpwrap-1.6.2
    说明:  远程桌面源码可以直接运行,简单实用,远程连接速度快(Remote desktop source code can be run directly,Simple and practical, the remote connection speed is fast)
    2020-06-23 10:00:02下载
    积分:1
  • TMS320C6000 CSL API Reference Guide (Rev. I)
    c6000 csl api参考手册,谢谢(TMS320C6000 CSL API Reference Guide (Rev. I))
    2018-03-20 10:30:33下载
    积分:1
  • 循环点击
    说明:  用c++制作的一个重复点击控制台程序,可用于游戏自动点击、批量登录等操作(A repetitive click console program made with c++ can be used for automatic click, batch login and other operations of games.)
    2020-06-23 16:40:01下载
    积分:1
  • FlappyBird2
    大致思路说说,就是在外部SRAM里面做了一个大数组[320][240]做了一帧缓冲,所有屏幕相关操作都是在这一帧上面实现的,使用DMA直接丢数据到FSMC接口上,比I/O快多了,然后就是资源的去背问题,所有的图片都是我从手机版上面截图下来的,然后背景色都是0X4DF9,然后因为jpg转换软件的关系,蓝色的背景色会有偏差所以直接判断把0x4df9不显示不可行,后来想到可以用RGB颜色来入手,虽然不是0x4df9但是还是蓝色,所以蓝色分量肯定比红色多,所以做了一个阈值判断(Roughly speaking, a large array [320] [240] is made in the external SRAM to do a frame buffer. All screen-related operations are implemented on this frame. Using DMA to drop data directly to the FSMC interface is much faster than I/O. Then it is the problem of resource backtracking. All the pictures are taken from the top of the mobile version, and then the background color is 0X4DF9. Later, because of the relationship between JPG conversion software, the blue background color will be biased, so it is not feasible to directly judge that 0x4df9 is not displayed. Later, I thought that RGB color can be used to start with. Although it is not 0x4df9, it is still blue, so the blue component must be more than red, so I made a threshold judgment, and then it is the transition between scene and scene.)
    2019-06-17 12:06:28下载
    积分:1
  • 职责链模式-基本代码
    遗传算法求解车辆路径问题,采用C#编写,计算结果以及计算结果的可视化显示(The genetic algorithm is used to solve the vehicle routing problem, which is compiled by C#, and the results are visualized.)
    2020-06-24 08:20:02下载
    积分:1
  • 696518资源总数
  • 104432会员总数
  • 16今日下载