搜索结果
找到约 869 项符合
P-NETARM 的查询结果
matlab例程 给定一批的样本
给定一批的样本,当然这些样本间必须相互独立。如果Q > chi2(p, nu),假设拒绝,否则通过。
ARGUMENTS:
x Absolut numbers.
p The prob ability value, calculated from Q.
Q The resulting Q-value.
其他 This is the model of boost converter. The control of this converter is PID. With changing the coffic
This is the model of boost converter. The control of this converter is PID. With changing the cofficient of the P-I and D a good replay can be supplied.
数据结构 I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a s
I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a simple data structure, say simple scheme, Fibonacci heaps, say F-heap scheme, and Pairing heaps, say P-heap scheme, and measure the relative performance of the three implementations.
编译器/解释器 1. 具有比较友好的GUI界面(仿照了我自己正在用的emacs); 2. 语法支持比较全面(毕竟是C-
1. 具有比较友好的GUI界面(仿照了我自己正在用的emacs);
2. 语法支持比较全面(毕竟是C-,语法还是不多的);
3. Error Recovery;
4. 生成p-code,便于理解;
5. 生成asm代码,通过masm6.0基本都能编译成功,但代码没有优化,效率极低。 ...
行业应用文档 开源路由器的研究
本论文研究了开源路由器的实现方法,通过具体的实验在X O R P 上实现了R I P , O S P F , B G P 等一系列协议,在P A C K E T
T R A C E R 上进行了仿真,并对开源路由器进行了性能评价。
行业应用文档 开源路由器的实现方法
本论文研究了开源路由器的实现方法,通过具体的实验在X O R P 上实现了R I P , O S P F , B G P 等一系列协议,在P A C K E T
T R A C E R 上进行了仿真,并对开源路由器进行了性能评价。
技术书籍 LatentSVM论文
The object detector described below has been initially proposed by
P.F. Felzenszwalb in [Felzenszwalb2010]. It is based on a
Dalal-Triggs detector that uses a single filter on histogram of
oriented gradients (HOG) features to represent an object category.
This detector uses a sliding window approac ...
Matlab 求解任意函数指定区间内的所有实根
本程序使用数值分析的方法找出任意函数指定区间内的所有实根。算法是通过一系列Chebyshev多项式毕竟目标函数,然后使用一种高效的数值分析方法(J.P. Boyd [see Appl. Num. Math. 56 pp.1077-1091 (2006)])求解出逼近函数的根。
matlab例程 蚁群算法程序
Ø 出动m只蚂蚁,每只蚂蚁各随机选择一条路径,记为I=[1 2 3···m],长度记为long(I);
Ø 计算出每条路径的信息素浓度,记为P(I)=1/long(I),并进行归一化处理;
Ø 重新出动m只蚂蚁,按如下规则选择路径:
l 每只蚂蚁都以一个概率p1选择新路径(路径随机);
l 未选择新 ...
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...