登录
首页 » Mathematica » 仿真实现无线传感器网络定位算法-MATLAB源代码

仿真实现无线传感器网络定位算法-MATLAB源代码

于 2018-01-02 发布 文件大小:16KB
0 206
下载积分: 1 下载次数: 37

代码说明:

  无线传感器网络定位算法源代码,很完整,运行成功(Wireless sensor network location algorithm source code, very complete, run successfully)

文件列表:

仿真实现无线传感器网络定位算法-MATLAB源代码\calcDError.m, 2015 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\calcDErrorTOA.m, 2403 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\calcError.m, 1495 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\calcErrorTOA.m, 1538 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\calcLocalizationCRB.m, 8091 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\dbrent.m, 3557 , 2003-04-24
仿真实现无线传感器网络定位算法-MATLAB源代码\df1dim.m, 189 , 2000-04-03
仿真实现无线传感器网络定位算法-MATLAB源代码\dlinmin.m, 922 , 2000-04-07
仿真实现无线传感器网络定位算法-MATLAB源代码\drawOval.m, 2002 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\f1dim.m, 246 , 2000-04-03
仿真实现无线传感器网络定位算法-MATLAB源代码\frprmn.m, 2707 , 2003-05-06
仿真实现无线传感器网络定位算法-MATLAB源代码\L2_distance.m, 2028 , 2000-12-20
仿真实现无线传感器网络定位算法-MATLAB源代码\minBracket.m, 2440 , 2000-04-13
仿真实现无线传感器网络定位算法-MATLAB源代码\N.m, 60 , 2003-04-24
仿真实现无线传感器网络定位算法-MATLAB源代码\nzSIGN.m, 457 , 2000-04-13
仿真实现无线传感器网络定位算法-MATLAB源代码\simMLE_main.m, 5838 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码\symrandn.m, 217 , 2005-04-17
仿真实现无线传感器网络定位算法-MATLAB源代码, 0 , 2011-12-27

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

发表评论

0 个回复

  • LDH
    Program for Facrotization of a matriz by LDH
    2012-10-18 09:56:17下载
    积分:1
  • guyoupinlvjisuan
    计算转子固有频率的传递矩阵法,包括prohl,ricatti等(Calculate the natural frequency of rotor transfer matrix method, including prohl, ricatti etc.)
    2010-11-15 10:26:12下载
    积分:1
  • fingerprint-m.files
    fingerprint estimation
    2013-10-11 20:35:54下载
    积分:1
  • PhasePLockedPLoop
    pll的封装模块主要有cppll,dpll,linearpll,powerpll.(Encapsulation of a PLL module,include:cppll,dpll,linearpll,powerpll and so on.)
    2012-05-17 13:46:38下载
    积分:1
  • Digital-speech-processing-procedures
    张雪英编著的数字语音处理书中的程序,内容比较全面,程序质量有所保证,对于刚接触语音的新手有所帮助。。。。(ZHANG Xue-ying edited book digital voice processing program. . . For the fourth year voice newbie help. . . .)
    2013-07-09 10:12:53下载
    积分:1
  • code
    说明:  各种信号的产生源程序,例如阶跃信号,求导信号等(A variety of signal generation source, such as the step signal, derivative signals)
    2010-03-26 18:35:08下载
    积分:1
  • MCMixedprogramming
    本光盘的程序是《MATLAB7.x与C/C++混合编程》配套的源程序,请对照该书使用(This CD is the procedure " MATLAB7.x with C/C++ mixed programming" complementary source, please use the control book)
    2013-08-26 21:54:07下载
    积分:1
  • 6_1
    1. 定义一个抽象学生类CStudent,它具有公有成员函数Average(),该函数用于计算学生的平均分,函数为虚函数;定义一个文科学生类CStudentLiberalArts,它是类CStudent的派生类,并以公有方式派生,它具有的成员有: 1) 保存英语、政治、数学、地理和历史、美术成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 定义一个理科学生类CStudentScience,它是类CStudent的派生类,并以公有方式派生,它具有的成员为: 1) 保存英语、物理、数学、化学和计算机、程序设计成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 编写主函数,并测试以下内容: 1) 定义一个CStudent的指针数组pStu,数组长度为4; 2) 动态创建2个文科学生的对象,地址存于pStu数组的0-1个元素内; 3) 动态创建2个理科学生的对象,地址存于pStu数组的2-3个元素内; 4) 利用while循环调用数组里每个元素的计算平均成绩操作; 释放动态分配的空间,确保必要的析构函数能被调用。 (1 define an abstract class student CStudent, it has a public member function Average (), this function is used to calculate the student s average points function as virtual function definition of a liberal arts student class CStudentLiberalArts, it is the class CStudent derived class, and public be derived, which has members are: 1) Save English, shaping member variables politics, mathematics, geography and history, art achievements 2) Set the above variables public member function 3) public member function of the output of the variable 4) public member function Average () is used to calculate the average student s points The definition of a science student class CStudentScience, it is the class CStudent derived class, and public manner derived, which has members as follows: 1) Save English, physics, mathematics, chemistry and computer programming achievement shaping member variables 2) Set the above variables public member function 3) public member function of t)
    2014-10-20 15:29:16下载
    积分:1
  • fisherclassify
    本程序主要是实现fisher线性分类器的功能,主要应用于隐写分析中的分类情形。(fisher linear classifier)
    2011-09-09 00:17:20下载
    积分:1
  • Lyapunov_ex
    Lyapunov指数生成程序。该指数是判断系统是否处于混沌状态的有力工具,很好用(Lyapunov index generator. The index is to determine whether the system is a powerful tool in a chaotic state, that is great)
    2010-11-26 20:16:47下载
    积分:1
  • 696518资源总数
  • 106148会员总数
  • 10今日下载