搜索结果

找到约 2,905 项符合 N-Step 的查询结果

人工智能/神经网络 #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define

#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] //隐层至输出层权值 ...
https://www.eeworm.com/dl/650/387939.html
下载: 115
查看: 1050

数据结构 void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(

void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(int i=n-2 i>=0 i--) { if(temp<a[i]) a[i+1]=a[i] else break } a[i+1]=temp }
https://www.eeworm.com/dl/654/388234.html
下载: 98
查看: 1114

数据结构 递归方法解决N皇后问题

递归方法解决N皇后问题,依次显示所有路径。
https://www.eeworm.com/dl/654/388287.html
下载: 129
查看: 1062

软件工程 FOR ADS STUDY ,ABOUT ADS APPLY AND STEP.

FOR ADS STUDY ,ABOUT ADS APPLY AND STEP.
https://www.eeworm.com/dl/540/388814.html
下载: 86
查看: 1068

多国语言处理 n algorithm for domain independent linear text segmentation This the Windows version of the C99 al

n algorithm for domain independent linear text segmentation This the Windows version of the C99 algorithm that was presented in my NAACL00 paper. [Directories] bin contains executables, JAR file and test files classes compiled code as individual class files doc NAACL 00 paper describing the alg ...
https://www.eeworm.com/dl/637/388927.html
下载: 192
查看: 1066

微处理器开发 S3C44B0x上面的N皇后问题程序

S3C44B0x上面的N皇后问题程序,使用串口(UART0)作为输入和输出。
https://www.eeworm.com/dl/655/389047.html
下载: 119
查看: 1015

Applet 用递归方法求n个数的无重复全排列!!感觉还可以吧

用递归方法求n个数的无重复全排列!!感觉还可以吧,所以拿出来大家一起分享了!一起努力学习!
https://www.eeworm.com/dl/634/389518.html
下载: 34
查看: 1185

数据结构 问题描述: 给定n位正整数a

问题描述: 给定n位正整数a,去掉其中任意k个数字后,剩下的数字按原次序排列成一个新的正整数。 算法设计: 给定n (1<=n<=200)位的正整数a和k,此时,k小于n。 试着设计一个算法,找出删去k个数,剩下数字组成的新数最小的删数方案。 ...
https://www.eeworm.com/dl/654/389909.html
下载: 97
查看: 1061

matlab例程 1)已知2N点实数序列 N=64。用一个64点的复数FFT程序

1)已知2N点实数序列 N=64。用一个64点的复数FFT程序,一次算出 ,并绘出频谱 。 (2)已知某序列 在单位圆上的N=64等分样点的Z变换 。用N点IFFT程序计算 ,绘出图像 。
https://www.eeworm.com/dl/665/390124.html
下载: 147
查看: 2273

文章/文档 (1) 编制解n阶线性代数方程组AX=b列主元三角分解法的通用程序. (2) 用所编的程序解线性方程组.给出解向量,保留5位有效数.

(1) 编制解n阶线性代数方程组AX=b列主元三角分解法的通用程序. (2) 用所编的程序解线性方程组.给出解向量,保留5位有效数.
https://www.eeworm.com/dl/652/390673.html
下载: 186
查看: 1426