BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "stdio.h" #include "time.h" #include "fstream.h" #define N 120 //学习样本个数 #define IN 3 //输入层神经元数目 #define HN 2 //隐层神经元数目 #define ON 2 //输出层神经元数目 #define Z 20000 //旧权值保存-》每次study的权值都保存下来 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double U11[IN][HN] //输入层至第一隐层权值 double V[HN][ON] //隐层至输出层权值 double X1[HN] //第一隐层的输入 double Y[ON] //输出层的输入 double H1[HN] //第一隐层的输出 double O[ON] //输出层的输出 double YU_HN1[HN] //第一隐层的阈值 double YU_ON[ON] //输出层的阈值 double err_m[N] //第m个样本的总误差 double a //学习效率 double alpha //动量因子
标签: include iostream iomanip stdlib
上传时间: 2017-06-15
上传用户:xinzhch
生成Trick文件工具 1.Open command line 2.input tricktest Usage: TrickTest -f -o -i -f source mpeg2 file to trick -o trick output directory -i output file id -m max coding error, default 0 -b max bitrate for trick generate, default 0 mean no limit -s trick buffer block size, must be n*188 -l log file, default c:\tricktest.log example: tricktest -f 黑鹰行动.mpg -o c:\temp -i A -m 1000 -b 3750000 soure file: 黑鹰行动.mpg output directory: c:\temp filename: 000000A,000000A.ff,000000A.fr,000000A.vvx max coding error: 1000 trick generation speed: 3750000 bps a
标签: TrickTest tricktest command source
上传时间: 2014-01-23
上传用户:水口鸿胜电器
Kullanı lan bazı matlab bilgileri Matlabda kodlar mfile lara yazı lı p kaydedilebilir. Ü st menüden, file, new, mfile. Command windowa yazdı kları nı zı kaydedemezsiniz. Yazdı ğ ı nı z kodu ç alı ş tı rabilmeniz iç in ç alı ş tı ğ ı nı z current directory nin altı na kaydetmelisiniz. Current directory i dosyanı n bulunduğ u yere de gö türebilirsiniz
标签: 305 bilgileri kaydedile Matlabda
上传时间: 2014-01-06
上传用户:miaochun888
MATLAB R14 Programı nı n License sunucusu üzerinden kurulumu: MATLAB programı nı n eski versiyonunu kaldı rı nı z. MATLAB 2 ş ekilde yüklenebilmektedir. A) Sadece istenen MATLAB bileş enlerinin yüklenmesi B) Tüm MATLAB bileş enlerinin yüklenmesi (Tüm bileş enler Harddisk sürücüde 1.5 GB yer kaplamaktadı r.)
标签: 305 MATLAB sunucusu kurulumu
上传时间: 2017-06-30
上传用户:wweqas
MTK flash TOOL源程序代码 ========== FlashTool v3.1.05 (2007/05/15) ======= Bug fixes: 1. [DA] Fix that DA cannot be loaded on MT6225 for exceeding internal SRAM size. 2. [DA] Fix that NAND download/read-back issue on MT6225 because buffer is linked on TCM. New features: 1. [DA] Supports new NOR Flash device [SPANSION] S29WS128P [SPANSION] S29WS256P [TOSHIBA] TV00560002DDGB 2. [DA] Supports OTP driver for below NOR Flash device [SPANSION] S29WS128P [SPANSION] S29WS256P Enhancements: 1. [DA] Provide Customized FlashTest_AllInOne_DA.bin. 2. [DA] NFB can auto format after first download. 3. [DA] Improve DA download algorithm: next sector will be erased only when a sector is fully programmed. 4. [DA] Improve DA download algorithm: enable recovery mechanism when press STOP button. 5. [DA] Improve MT6223 Download Speed.
上传时间: 2014-01-04
上传用户:xg262122
1.开启档案 ( 来源档 、 目的档 ) 2.逐一检查来源档每个字元,若不是EOF则到3. ,否则结束 3. (1)若发现字元为 a~z 或 A~Z 或 0 ~ 9 或 _ 丢给procId()处理 (2)若发现字元为 (字元) 时,丢给procChar() 处理 (3)若发现字元为 " (字串) 时,丢给procString()处理 (4)若发现字元为 \ (注解) 时,丢给procComment()处理 (5)若发现字元为空白或跳格时,丢给printpace()处理 (6)其他情况有更细微的处理 ( 如遇到 { 、 ) 4.关闭档案
标签:
上传时间: 2014-01-13
上传用户:jackgao
3D游戏编程大师技巧(中文版) 本书是游戏编程畅销书作者André LaMothe的扛鼎之作,从游戏编程和软件引擎的角度深入探讨了3D图形学的各个重要主题。全书共分5部分,包括16章的内容。第1~3章简要地介绍了Windows和DirectX编程,创建了一个Windows应用程序模板,让读者能够将精力放在游戏逻辑和图形实现中,而不用考虑Windows和DirectX方面的琐事;第4~5章简要地介绍了一些数学知识并实现了一个数学库,供以后编写演示程序时使用;第6章概述了3D图形学,让读者对本书将介绍的内容有大致的了解;第7~11章分别介绍了光照、明暗处理、仿射纹理映射、3D 裁剪和深度缓存等内容;第12~14章讨论了高级3D渲染技术,包括透视修正纹理映射、Alpha混合、1/z缓存、纹理滤波、空间划分和可见性算法、阴影、光照映射等;第15~16章讨论了动画、运动碰撞检测和优化技术。 本书适合于有一定编程经验并想从事游戏编程工作或对3D图形学感兴趣的人员阅读。
上传时间: 2014-02-25
上传用户:lhc9102
一款类似百度知道系统的问题解答系统,问题页面自动生成静态网页- M( ]- `+ X0 x 系统特色: + O$ U8 n- [ z# {/ E本系统结合了仿百度知道程序和仿新浪爱问程序的共同优点,设计更加合理 6 X) H8 a5 t9 h& D6 e8 S9 p2 P 问题页面实时生成静态页面,减少系统开销,更利于搜索引擎的收录 ! f5 U& N3 J+ B7 I" S完美使用系统缓存,减少数据库读取次数 b T |, g1 v9 \" E* Z 完善的后台管理功能 # u5 C: I- c$ P6 P( H9 S2 w支持问题的附件上传 . U! K+ k ~) o 对搜索引擎的优化:支持Keywords和Description页面头部标签的自定义 6 ^! h: m- U4 p( z# X支持 JS 代码的问题调用 t8 E5 ]) b3 M8 x* z提供与动网、oblog、动易实现用户整合的标准接口 ) {4 \ ` ]1 g1 F8 u
标签: 百度
上传时间: 2013-11-28
上传用户:ztj182002
I used MFC. that code is not perfect and have some problem. But its function is Ok. You just fix and use array of display buffer. That is about How to play RAW graphic file. rotate, mirr, plus, divide ... etc
标签: function perfect problem used
上传时间: 2017-07-30
上传用户:皇族传媒
一维中实现等离子体FDTD编程,采用Z变换,编程已通过验证,适合进行Z变换计算的初学者参考
上传时间: 2017-07-31
上传用户:kelimu