#include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define ON 1 //输出层神经元数目 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double W[HN][IN] //输入层至隐层权值 double V[ON][HN] //隐层至输出层权值 double X[HN] //隐层的输入 double Y[ON] //输出层的输入 double H[HN] //隐层的输出
资源简介:#include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define ON 1 //输出层神经元数目 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 dou...
上传时间: 2014-01-01
上传用户:凌云御清风
资源简介: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 //输入层神经元...
上传时间: 2017-06-15
上传用户:xinzhch
资源简介:bp神经网络,N 11 //学习样本个数 #define IN 5 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define HC 3 //隐层层数 #define ON 3 //输出层神经元数目
上传时间: 2013-11-26
上传用户:rocketrevenge
资源简介:fft源代码,#include "f2407_c.h" #include "math.h" #define N 32 // FFT变换的点数 extern void fft(void); extern void resave(void); interrupt void phantom(void); void sysinit(void); extern int input[2*N];
上传时间: 2016-06-28
上传用户:LouieWu
资源简介:C++完美演绎 经典算法 如 /* 头文件:my_include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的...
上传时间: 2014-01-17
上传用户:epson850
资源简介:#include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5
上传时间: 2015-05-22
上传用户:lwwhust
资源简介:#include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5
上传时间: 2015-05-22
上传用户:cc1915
资源简介:#include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5
上传时间: 2014-01-03
上传用户:JIUSHICHEN
资源简介:#include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5
上传时间: 2014-06-01
上传用户:yepeng139
资源简介:#include "define.h" #include <stdio.h> #include <string.h> #include <ctype.h> #include <malloc.h> FILE *fp /*////////////////////////////////////////////////////////////////////////////// This is a pretreatment. /////////////////...
上传时间: 2015-07-16
上传用户:ynsnjs
资源简介:数据结构 课程 2叉树的遍历 #include "stdafx.h" #include <iostream.h> typedef char elemtype
上传时间: 2013-11-30
上传用户:tb_6877751
资源简介:#include<stdlib.h> #include "dos.h" #include "graphics.h" #include "math.h" #define PI 3.1415926 #define NULL 0 #include<stdio.h> #include<string.h>
上传时间: 2013-12-29
上传用户:王者A
资源简介:#include "REG51.H" #include <intrins.h> #include "Common.h" //#include "Remote.h" #define OSD_EN //typedef unsigned char uCHAR //#include "T100Data_A.h" //#include "T100Data_PA.h" //#include "T100Data_AU.h" //#include "T100D...
上传时间: 2016-07-21
上传用户:x4587
资源简介:感知器的VC实现#include "percept.h" #include "stdio.h" #include "stdlib.h"
上传时间: 2013-12-17
上传用户:偷心的海盗
资源简介:#include "pch.h" #include "base64.h" NAMESPACE_BEGIN(CryptoPP) static const int MAX_LINE_LENGTH = 72 static const byte vec[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" static const byte padding = = ...
上传时间: 2015-12-07
上传用户:古谷仁美
资源简介:#include"c1.h" typedef int ElemType #include"c2-2.h" #include"bo2-4.cpp" void MergeList_CL(LinkList &La,LinkList Lb) { LinkList p=Lb->next Lb->next=La->next La->next=p->next free(p) La=Lb }
上传时间: 2016-03-03
上传用户:rishian
资源简介:cs8900 driver. include: cs8900.c and cs8900.h
上传时间: 2016-05-02
上传用户:netwolf
资源简介:点液晶的程序,#include <util/delay.h> #include <avr/pgmspace.h> #include "lcd.h" #include "font6x8.h" #include "font8x16.h" #include "my_type.h"
上传时间: 2016-05-02
上传用户:change0329
资源简介://*********主机代码****** #include <reg51.h> #include "Clicent_Setting.h" #include "LCD_Funtion.h" #include "Futions.h" #include "Host_Interrupt_Funtion.h" int num1=1 //从机数码管起始数 int num2=0 int num3=1
上传时间: 2016-05-27
上传用户:王者A
资源简介:c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include <fstream>//输入/输出文件流类 using namespace std const int Maxr=100 //最多的读者 const int Maxb=100 //最多的图书 const int Maxbor=5 //每位读者最多借五...
上传时间: 2013-12-18
上传用户:拔丝土豆
资源简介:操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct node { char name[10] /*进程标识符*/ int prio /*进程优先数*/ int round /*进程时间轮转时间片*/ int cputime /*进程占...
上传时间: 2016-08-09
上传用户:凤临西北
资源简介:实现了EVC所有列双击可编辑,也适用于VC++ #include "stdafx.h" #include "FM.h"//这个不要也似乎可以,因为是对话框的头文件 #include "EditListCtrl.h" #include <windowsx.h>
上传时间: 2016-08-15
上传用户:xlcky
资源简介://使用gray code的解法 #include <iostream> #include <cmath> using namespace std #define ZERO 0 #define ONE 1 #define ODD 1 #define EVEN 0 #define RIGHT 1 #define LEFT 0 #define MAX 10
上传时间: 2016-12-31
上传用户:luke5347
资源简介:TFT芯片9320芯片驱动 #include "system.h" #include "altera_avalon_pio_regs.h" #include "alt_types.h" #include "LCD.h"
上传时间: 2013-12-28
上传用户:huyiming139
资源简介:19.死机问题 extern BYTE idata MP3PwDnCnt 变量类型为idata 20.在MP412UT72基础上修改 更换pindef.h 和servopin.h(影响图象出现) 21.#define ENABLE_TRAY_PWM 0///1停顿 22.使用pdvd30 伺服 750710_JK.lib 23.使用了58版 MP420 的伺服库和处理办法,可以...
上传时间: 2016-08-08
上传用户:2467478207
资源简介:struts+h st ruts+h struts+h 这是个英文原吗!
上传时间: 2014-01-20
上传用户:cylnpy
资源简介:H.245是H.323协议族中用于媒体信道控制的协议主要完成多媒体通信中每个逻辑通道的建立维护和释放具体包括逻辑通道的打开和关闭参数设定收发双方的能力协商等控制功能同时它还要完成多点会议呼叫中逻辑信道的配合控制功能.
上传时间: 2014-11-02
上传用户:alan-ee
资源简介:H-JUART驱动器 H-JUART驱动器
上传时间: 2016-03-31
上传用户:nanshan
资源简介:D-S.Kim, Y.S.Lee, W.H.Kwon, and H.S.Park, "Maximum Allowable Delay Bounds in Networked Control Systems", Control Engineering Practice (Elsvier Science) (Simulation Example - Matlab Code), PP.1301-1313, Vol.11, Issue 11, December, 2003
上传时间: 2016-04-10
上传用户:lifangyuan12
资源简介:EasyJTAG-H manual, EasyJTAG-H manual,EasyJTAG-H manual
上传时间: 2016-06-07
上传用户:Divine