搜索结果
找到约 57 项符合
Weight 的查询结果
按分类筛选
- 全部分类
- 人工智能/神经网络 (7)
- 其他 (6)
- matlab例程 (5)
- 通讯/手机编程 (5)
- Java编程 (3)
- 数值算法/人工智能 (3)
- Delphi控件源码 (2)
- 通讯编程文档 (2)
- 数据结构 (2)
- J2ME (2)
- 单片机开发 (2)
- 模拟电子 (1)
- 电源技术 (1)
- 单片机编程 (1)
- 书籍源码 (1)
- 压缩解压 (1)
- *行业应用 (1)
- 驱动编程 (1)
- 技术管理 (1)
- 嵌入式/单片机编程 (1)
- uCOS (1)
- 软件测试 (1)
- 汇编语言 (1)
- 数学计算 (1)
- JavaScript (1)
- 应用设计 (1)
- 源码 (1)
- 技术资料 (1)
- VIP专区 (1)
其他 对一个运输商来说要把货运到收货地点选择最短的路线运输是其实现最大利润的要求
对一个运输商来说要把货运到收货地点选择最短的路线运输是其实现最大利润的要求,那么怎样选择最短的运输路线呢?在运输交通图中,我们设每一个城市为一个结点(vertextype类型)点并把他们分别用关键字代表(关键字int key ),也就是说把每个城市给出一个整数编码;一个城市直接到另一个城市的交通路线为边且这两个城市为 ...
驱动编程 You will write a program for calculating person s Body Mass Index (BMI). The following formula is us
You will write a program for calculating person s Body Mass Index (BMI). The following formula is used: bmi = weight / length² , where weight is in kilograms and length is in meters.
单片机开发 * CONSTRAINTS * This module does not handle data which is considered out of range by the * appli
* CONSTRAINTS
* This module does not handle data which is considered out of range by the
* application(i.e. fixed constants which represent error condition)
*
* Maximum weight value must be limited to 128 to prevent an overflow
* condition during the calculation.
*
* The internal data type mu ...
人工智能/神经网络 BP神经网络分类器 程序有两种运行状态
BP神经网络分类器
程序有两种运行状态,一个是学习,另外一个是分类。在学习状态下,在Dos命令符下输入bp learn,便开始学习了,学习的结果放在weight.dat中;在工作状态下,在Dos命令符下输入bp work,便开始识别classfyme.dat中的数据了,识别完成后,结果放在results.dat中。在bp运行的任何一种状态下,都不能手工打开W ...
通讯编程文档 设有一个SPJ数据库
设有一个SPJ数据库,包括S、P、J、SPJ四个关系模式:
S(SNO,SNAME,STATUS,CITY) P(PNO,PNAME,COLOR,WEIGHT)
J(JNO,JNAME,CITY) SPJ(SNO,PNO,JNO,QTY)
供应商表S由供应商代码SNO、供应商姓名SNAME、供应商状态STATUS、供应商所在城市名CITY组成。
零件表P由零件代码PNO、零件名PNAME、颜色COLOR、重量WETGHT组成。
...
matlab例程 % because we do not truncate and shift the convolved input % sequence, the delay of the desired out
% because we do not truncate and shift the convolved input
% sequence, the delay of the desired output sequence wrt
% the convolved input sequence need only be the delay
% introduced by the ideal weight vector centred at n=5
数值算法/人工智能 用分支限界法求解背包问题(0/1背包) 1.问题描述:已知有N个物品和一个可以容纳TOT重量的背包
用分支限界法求解背包问题(0/1背包)
1.问题描述:已知有N个物品和一个可以容纳TOT重量的背包,每种物品I的重量为Weight,价值为Value。一个只能全放入或者不放入,求解如何放入物品,可以使背包里的物品的总价值最大。
2.设计思想与分析:对物品的选取与否构成一棵解树,左子树表示装入,右表示不装入,通过检索问题的 ...
通讯/手机编程 Computes BER v EbNo curve for convolutional encoding / soft decision Viterbi decoding scheme assum
Computes BER v EbNo curve for convolutional encoding / soft decision
Viterbi decoding scheme assuming BPSK.
Brute force Monte Carlo approach is unsatisfactory (takes too long)
to find the BER curve.
The computation uses a quasi-analytic (QA) technique that relies on the
estimation (approximate on ...
其他 Swarm intelligence algorithms are based on natural behaviors. Particle swarm optimization (PSO) is
Swarm intelligence algorithms are based on natural
behaviors. Particle swarm optimization (PSO) is a
stochastic search and optimization tool. Changes in the
PSO parameters, namely the inertia weight and the
cognitive and social acceleration constants, affect the
performance of the search process. Th ...
其他 构造哈夫曼树 哈弗曼树中没有度为一的节点
构造哈夫曼树
哈弗曼树中没有度为一的节点,是标准的二叉树,所以有n个叶子结点时,需要一个长度为2n-1的一维数组存储哈弗曼树的结点。
(1)、n个叶子节点只有weight权值,处理非叶子节点,从ht[i](ht[1]~ht[n-1])中找到ht[i].weight最小的两个节点ht[s1]和ht[s2],这就是Select(int n,int &s1,int & s2,HTNode *ht)函数完 ...