搜索资源列表
BackProp算法源程序
- 开发环境:C语言 简要说明:BackProp算法:BP网络是反向传播(Back Propagation)网络。它是一种多层前向网络,采用最小均方差学习方式。这是一种最广泛应用的网络。它可用于语言综合,识别和自适应控制等用途。BP网络需有教师训练。 -development environments : C language Brief Descr iption : BackProp algorithm : BP is the back-propagation network (Back
jfdctflt
- 一个JPEG文件的压缩实现.为jpeg中的前向DCT变换.是一个有损的压缩-a JPEG compression to achieve. For the jpeg to the DCT. One is the expense of compression
r8x8dct
- 应用于视频编解码算法中的前向DCT算法在ADSP-BLACKFIN5**实现-used video codec algorithm to the first DCT algorithm ADSP-BLACKFIN5 achieve **
bpxor
- BP算法实现异或问题,采用S型函数的前向多层神经网络及其逆推学习算法-BP algorithm differences or problems, use of the S-Function to the multilayer neural networks and learning algorithms Backstepping
fec_perf_v1_0_tar
- 这个文件包内含前向纠错编码的典型代码,可以进行用户对话交互操作-this package includes former FEC typical code, the user can interact dialogue
5班8号周前平
- 输入一个有向图,用深度优先搜索,判断该图是否为一有圈的图。-importation of a directed graph, with the depth-first search to determine whether the plan is a map of the circle.
getparam
- 在基于hmm的语音识别中计算前向概率,后向概率以及各种参数结构的源代码。-based on voice recognition to the calculation of the probability that after the probability of various parameters of the structure of the source code.
IS95前向链路系统
- 这是IS95前向链路系统的MATLAB仿真程序及仿真结果,仿真环境为加性高斯白噪声信道。
23fec前向纠错
- 是前向纠错实验课用的,主要是23fec的前向纠错。
fec
- 基于MATLAB的RS仿真代码 FEC前向纠错代码-MATLAB-based simulation code RS
crc
- CRC16 和 26位缩短码前向纠错计算,广泛用于FFSK的调制和解调算法。-CRC16 and 26 yards shorter FEC basis, are widely used in FFSK of modulation and demodulation algorithm.
ebp1
- matlab动量梯度下降算法 生成一个新的前向神经网络 对BP神经网络进行训练 对BP神经网络进行仿真-Momentum matlab gradient descent algorithm to generate a new feed-forward neural networks trained BP neural network on the BP neural network simulation
HMM_Forward_Backward
- 马尔可夫链的前向和后向算法,在隐马尔可夫模型中用于学习问题的-HMM-FORWARED-BACKWORD
fano1.1
- 前向纠错 fano1.1 的实现 测试通过-Implementation of FEC fano1.1
Smooth_compare
- DOA估计中,2MUSIC算法的前后向平滑与前向、后向平滑的比较。-This is the DOA estimation by ULA and spatial smoothing.
70616536matlab
- 采用BP网络,NEWCF--生成一个新的前向神经网络,TRAIN--对网络进行训练, 定义训练样本(Using the BP network, NEWCF-- generates a new forward neural network. TRAIN-- trains the network to define training samples.)
图像旋转 matlab代码 前向反向
- 实现了图像的旋转,利用前向映射与反向映射两种方法分别实现(The rotation of the image is realized, and the two methods are realized by forward mapping and reverse mapping.)
IS95前向链路系统
- IS95前向链路系统:此函数用于IS-95前向链路系统的仿真,包括扩频调制,匹配滤波,RAKE接收等相关通信模块。 仿真环境: 加性高斯白噪声信道.(IS95 forward link system: this function is used for the simulation of IS-95 forward link system, including spread spectrum modulation, matched filtering, RAKE reception and
前推回代潮流计算程序
- 前推回代法已知配电网的始端电压和末端负荷,以馈线为基本计算单位。 最初假设全网电压都为额定电压,根据负荷功率由末端j向始端k逐段推算,仅计算各元件中的功率损耗而不计算节点电压,求得各支路上的电流和功率损耗,并据此获得始端功率,这是回代过程。 再根据给定的始端电压和求得的始端功率,由始端向末端逐段推算电压降落,求得各节点电压,这是前推过程。如此重复上述过程,直至各个节点的功率偏差满足允许条件为止。(The forward and backward substitution method
链式前向星
- 链式前向星是一种存储图的方法。如果你需要一个有序的边序列,如果排序的话用快拍O(nlogn),而链式前向星可以避免这种排序。但是数据规模较小时速度比不上邻接矩阵。 如果说邻接表是不好写但效率好,邻接矩阵是好写但效率低的话,前向星。前向星固然好些,但效率并不高。而在优化为链式前向星后,效率也得到了较大的提升。虽然说,世界上对链式前向星的使用并不是很广泛,但在不愿意写复杂的邻接表的情况下,链式前向星也是一个很优秀的数据结构。