登录
首页 » matlab » Final-Project

Final-Project

于 2013-11-20 发布 文件大小:524KB
0 92
下载积分: 1 下载次数: 8

代码说明:

  Gesture Recognition using Neural Network

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

发表评论

0 个回复

  • fem4tv
    Finite Element for Total Variation Minimization
    2012-04-03 06:09:33下载
    积分:1
  • source_code_6nn3dv
    成功实现计算CHzvEe算法的程序,本人测试已经通过,性能已基本达到CHzvEe算法的性能,需要MATLAB 2009b环境运行,如有问题,欢迎讨论 (The successful implementation of the program to calculate CHzvEe algorithm, I have passed the test, need MATLAB2009b operating environment, any questions, please contact me )
    2015-12-13 18:26:00下载
    积分:1
  • 1585_Modul4
    matlab tutorial free
    2013-09-09 18:17:52下载
    积分:1
  • filter.dr
    【无人驾驶传感器之64线激光雷达】 velodyne hdl64es2 64线激光雷达点云数据处理之角分割与滤波方法([64 line laser radar sensor of the unmanned] angle velodyne hdl64es2 64 lines LIDAR point cloud data processing method of segmentation and filtering)
    2013-12-02 14:14:59下载
    积分:1
  • analiser
    Tells a picture if its monotone or not.
    2015-03-09 23:17:07下载
    积分:1
  • Matlab5
    :介绍遣传算法的基本原理和Matlab的遗传算法优化工具箱(GAOT),分析了优化工具函数。探讨Matlab遗传算法工具箱在 参数优化和非线性规划中的应用。通过优化实例,说明遗传算法是一种具有良好的全局寻优性能的优化方法。用Maflab语 言及Maflab语言编制的优化工具箱进行优化设计具有语言简单、函数丰富、用法比较灵活、编程效率高等特点。(: Removal algorithm introduce the basic principles and Matlab Genetic Algorithm Optimization Toolbox (GAOT), an analysis of function optimization tool. Explore the Matlab Genetic Algorithm Toolbox in the parameter optimization and nonlinear programming applications. Through optimization examples to illustrate the genetic algorithm is a good global optimization method to optimize performance. Maflab language and using language Maflab Optimization Toolbox to optimize the design of the language is simple, function-rich, and using more flexible programming and high efficiency.)
    2007-09-07 20:15:26下载
    积分:1
  • FANS_v10_win64
    快速自适应非局部sar降斑,bm3d处理图像效果非常不错,但复杂度太高,本文针对bm3d复杂度太高这一缺点,对算法计算方面作出改善;通过源程序文件可以很清楚了解作者思想(Fast Adaptive nonlocal sar Despeckling, bm3d image processing effect is very good, but the complexity is too high, the paper is too high for this shortcoming bm3d complexity of computing algorithm to make improvements can clearly understand what the author thought through the source files)
    2014-06-03 21:04:47下载
    积分:1
  • Node-admittance-matrix
    形成14节点的电力系统节点导纳矩阵,其中包含程序运行时所用到的关于网络的参数表,程序有详细的注释(Forming a 14-node system node admittance matrix of power, which includes the use of the program is running on the network parameter table, the program has detailed notes)
    2020-12-23 10:59:07下载
    积分:1
  • development-risk-prediction
    本文基于BP神经网络应用于预测的原理,提出预测步骤及预测可行性,探讨建立基于BP神经网络的预测模型的关键技术,包括样本的选取与预处理、输入输出变量的选取、隐层节点数的确定、初始权值和阈值的选取、激活函数、训练算法与参数的选取,最后建立合理的网络模型;结合住宅市场的实际情况,建立两类BP 神经网络预测模型:基于时间序列的趋势预测模型以及基于影响因素的回归预测模型,即分别采用神经网络趋势预测和回归预测的思路,把住宅市场的供给、需求与房价的历年数据以及其影响因素的数据分别作为学习样本,建立预测模型,进行预测。(Real estate development risk prediction )
    2011-04-22 10:40:30下载
    积分:1
  • gafmax
    % [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation) % Finds a maximum of a function of several variables. % fmaxga solves problems of the form: % max F(X) subject to: LB <= X <= UB % BestPop--------最优的群体即为最优的染色体群 % Trace----------最佳染色体所对应的目标函数值 % FUN------------目标函数 % LB-------------自变量下限 % UB-------------自变量上限 % eranum---------种群的代数,取100--1000(默认1000) % popsize--------每一代种群的规模;此可取50--100(默认50) % pcross---------交叉的概率,此概率一般取0.5--0.85之间较好(默认0.8) % pmutation------变异的概率,该概率一般取0.05-0.2左右较好(默认0.1) % options--------1×2矩阵,options(1)=0二进制编码(默认0),option(1)~=0十进制编码,option(2)设定求解精度(默认1e-4)( [BestPop, Trace] = fmaxga (FUN, LB, UB, eranum, popsize, pcross, pmutation) Finds a maximum of a function of several variables. Fmaxga solves problems of the form: max F (X) subject to : LB <= X <= UB BestPop-------- optimal chromosome groups is the best group Trace---------- chromosome corresponding to the best objective function value FUN------------ objective function LB------------- variable lower limit since the UB------------- variable upper limit eranum--------- populations algebra, take 100- 1000 (default 1000) popsize-------- population size of each generation this desirable 50- 100 (default 50) pcross--------- crossover probability, the probability of a general check 0.5- 0.85 between the better (default 0.8) pmutation------ mutation probability, the probability of 0.05 general admission better about-0.2 (default 0.1) options-------- 1 × 2 matrix, options (1) = 0 binary code (default 0), option (1) ~ = 0 decimal coding, option (2 ) set accuracy (default 1e-4))
    2006-10-18 16:07:48下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载