登录
首页 » WINDOWS » 传感器信息融合-随书程序

传感器信息融合-随书程序

于 2017-08-22 发布 文件大小:440KB
0 193
下载积分: 1 下载次数: 54

代码说明:

  多传感信息、数据融合滤波算法及随书matlab程序。(Sensor information, data fusion algorithms and Book following programs)

文件列表:

传感器信息融合-随书程序\第2章\ex_system_codegen.m
传感器信息融合-随书程序\第2章\sobel.m
传感器信息融合-随书程序\第3章kalmanfilter fusion\kalmanfusion.m
传感器信息融合-随书程序\第4章\lindetection.m
传感器信息融合-随书程序\第4章\serial-comunication.m
传感器信息融合-随书程序\第5章\example1.m
传感器信息融合-随书程序\第5章\example2.m
传感器信息融合-随书程序\第5章\example3.m
传感器信息融合-随书程序\第5章\example4.m
传感器信息融合-随书程序\第5章\example5.m
传感器信息融合-随书程序\第5章\example6.m
传感器信息融合-随书程序\第6章\area_var_match.m
传感器信息融合-随书程序\第6章\clock1.bmp
传感器信息融合-随书程序\第6章\clock2.bmp
传感器信息融合-随书程序\第6章\dctVarFusion.m
传感器信息融合-随书程序\第6章\dec2.m
传感器信息融合-随书程序\第6章\downspl.m
传感器信息融合-随书程序\第6章\es2.m
传感器信息融合-随书程序\第6章\ex1.m
传感器信息融合-随书程序\第6章\ex2.m
传感器信息融合-随书程序\第6章\ex3.m
传感器信息融合-随书程序\第6章\example1.m
传感器信息融合-随书程序\第6章\example2.m
传感器信息融合-随书程序\第6章\example3.m
传感器信息融合-随书程序\第6章\example6.m
传感器信息融合-随书程序\第6章\fuse_lap.m
传感器信息融合-随书程序\第6章\high.jpg
传感器信息融合-随书程序\第6章\low.jpg
传感器信息融合-随书程序\第6章\lowfrefus.m
传感器信息融合-随书程序\第6章\modmat.m
传感器信息融合-随书程序\第6章\mydwt.m
传感器信息融合-随书程序\第6章\mydwt2.m
传感器信息融合-随书程序\第6章\mywavedec2.m
传感器信息融合-随书程序\第6章\pepsi1.tif
传感器信息融合-随书程序\第6章\pepsi2.tif
传感器信息融合-随书程序\第6章\selb.m
传感器信息融合-随书程序\第6章\selc.m
传感器信息融合-随书程序\第6章\submat.m
传感器信息融合-随书程序\第6章\undec2.m
传感器信息融合-随书程序\第6章\weivec.m
传感器信息融合-随书程序\第2章
传感器信息融合-随书程序\第3章kalmanfilter fusion
传感器信息融合-随书程序\第4章
传感器信息融合-随书程序\第5章
传感器信息融合-随书程序\第6章
传感器信息融合-随书程序

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

发表评论

0 个回复

  • HHT-Transfer
    信号处理中的希尔伯特—黄变换,用labvIEW编程,适用(HHT in signor processing )
    2012-02-19 16:04:53下载
    积分:1
  • C语言标准库源代码
    C语言标准库实现了一些常用的子程序功能,方便编程人员直接使用。比如数学库,里面就有常用的数学计算函数,方便我们直接调用。此库是前不久去官网下载的,很全,我们可以查看库函数里的源码,体会别人的编程思想。这里拿来和大家分享一下。
    2022-10-24 14:20:11下载
    积分:1
  • 基于STM32正弦波逆变器设计
    说明:  基于STM32正弦波逆变器设计,设计逆变器的一些有用文件(sinusoid; sinusoidal wave; sine wavenverter; dc-to-ac converter; dc-to-ac inverter)
    2019-01-21 10:35:26下载
    积分:1
  • account
    设计一个名为Account类。这个类包含: (1)一个名为id的int型数据域,表示账户的身份号(默认值为0)。 (2)一个名为balance的double型数据域,表示账户余额(默认值为0)。 (3)一个名为annualInterestRate的double型数据域,保存当前年利率(默认值为0)。 (4)一个无实参构造函数,创建一个默认账户。 (5)id、balance和annualInterestRate的访问器和更改器函数。 (6)一个名为getMonthlyInterestRate()的函数,返回月利率。 (7)一个名为withDraw的函数,从账户中支取指定金额。 (8)一个名为deposit的函数,向账户中存入指定金额。 画出类的UML图,实现类。编写一个测试程序,它创建一个Account对象,其ID为1122,账户余额为20000,年利率为4.5 。使用withDraw函数取出2500美元,使用deposit函数存入3000美元,然后输出账户余额、月利率和账户创建时间。(Design a class named Account. This class includes: (a) a named data type int id field that indicates the account identification number (default is 0). (2) a double-called balance of data fields, which means that the account balance (default is 0). (3) a double type named annualInterestRate of data fields, save the current interest rate (default is 0). (4) a no-argument constructor creates a default account. (5) id, balance and annualInterestRate access control and change control functions. (6) a named getMonthlyInterestRate () function returns a monthly rate. (7) a function named withDraw, drawn from the account specified amount. (8) a function called deposit to the account into a designated amount. Draw a UML class diagram, the implementation class. Write a test program that creates an Account object, its ID is 1122, the account balance is 20,000, an interest rate of 4.5 . Use withDraw function out $ 2,500, $ 3,000 deposit with deposit function, and then outputs the account balance, m)
    2013-06-01 13:21:54下载
    积分:1
  • 购物车商品数量加减计算代码
    说明:  数量加减计算代码基于AngularJS1.2.32制作,购物车商品增加、减少、移除、数量计算结算代(The quantity addition and subtraction calculation code is based on Angular JS1.2.32. The shopping cart goods are increased, decreased, removed, and the quantity calculation and settlement generation are produced.)
    2019-03-09 17:23:12下载
    积分:1
  • QT5教程 完整版
    说明:  很好的书籍,值得仔细阅读。 解压后是qt5的相关资料(it's reserved read carefully)
    2021-01-10 22:17:31下载
    积分:1
  • Nouveau-dossier
    fichier de guide de demmarage Altuim designer
    2013-03-10 19:12:08下载
    积分:1
  • 107 网口笔记
    使用STM32F407进行以太网通信,并涉及到数据链路层的工业以太网通信,使用LWIP协议栈(STM32F407 is used for Ethernet communication, which involves industrial Ethernet communication in data link layer, and LWIP protocol stack is used.)
    2019-07-02 19:32:18下载
    积分:1
  • 这是一个老鼠走迷宫的游戏,写的还不错唷!
    这是一个老鼠走迷宫的游戏,写的还不错唷!-This is a rat Maze of the game, also wrote a public good!
    2022-07-09 21:27:14下载
    积分:1
  • 14 用PG12864LCD设计的指针式电子钟
    说明:  显示模拟时钟和数字时钟能看到指针在动可附加红外程序或者温度程序。(Display analog and digital clocks to see the pointer moving can be added to the infrared program or temperature program.)
    2019-05-31 08:31:32下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载