-
计算超短脉冲非线性传输的一个比较成熟的M文件
计算超短脉冲非线性传输的一个比较成熟的M文件-Calculation of nonlinear transmission of ultrashort pulse of a more mature M documents
- 2022-03-12 11:16:19下载
- 积分:1
-
简单的马尔科夫算法,Markov链数据提供了有当前状态决定,而又独立于当前状态的序列,此处算法是将给定的文本串生成新的随机文本...
简单的马尔科夫算法,Markov链数据提供了有当前状态决定,而又独立于当前状态的序列,此处算法是将给定的文本串生成新的随机文本- Simple Sample of a Markov Chain Algorithm:A markov chain is a sequence of random variables in which the future variable is determined by the present variable but is independent of the way in which the present state arose from its predecessors. The code is a simple example of a markov chain that generates somewhat random text output from a given text input.
- 2022-04-07 11:22:32下载
- 积分:1
-
booth multiplier Radix2 program
在这个项目中,booth乘法器是使用进位先行加法器设计的。booth多处理器在许多DSP应用中都有应用。
- 2022-02-04 20:12:54下载
- 积分:1
-
reduction de dimension et classification par un classifieur svm
un script d"un ptit algorithme de réduction de dimension avec le classifieur SVM pour la classification des données synthétiques ou une image, utilisation de ll"analyse en composants principals pour la reduction de dimension
- 2022-02-15 00:32:47下载
- 积分:1
-
under Gcc compiler,sd card and mmc card basic functions
under Gcc compiler,sd card and mmc card basic functions-under may refer compiler, sd card and basic functions mmc card
- 2022-03-22 08:50:16下载
- 积分:1
-
基于遗传算法的BP神经网络优化算法
BP网络是一类多层的前馈神经网络。它的名字源于在网络训练的过程中,调整网络的权值的算法是误差的反向传播的学习算法,即为BP学习算法。BP算法是Rumelhart等人在1986年提出来的。由于它的结构简单,可调整的参数多,训练算法也多,而且可操作性好,BP神经网络获得了非常广泛的应用。据统计,有80%~90%的神经网络模型都是采用了BP网络或者是它的变形。BP网络是前向网络的核心部分,是神经网络中最精华、最完美的部分。BP神经网络虽然是人工神经网络中应用最广泛的算法,但是也存在着一些缺陷,例如:①、学习收敛速度太慢;②、不能保证收敛到全局最小点;③、网络结构不易确定。
- 2022-03-05 03:53:12下载
- 积分:1
-
小波去噪
小波去噪的一个程序,我网上下的,里面是对小波思想的一个应用,利用小波变换对图像进行去噪处理
- 2022-03-20 03:42:10下载
- 积分:1
-
来自于http:acm.zju.edu.cn上的一个名叫Fece的用C写的程序
来自于http:acm.zju.edu.cn上的一个名叫Fece的用C写的程序-from http:acm.zju.edu.cn named one of the C Fece written procedures
- 2023-09-05 10:15:03下载
- 积分:1
-
利用VB开发的典型pid控制程序,用于一阶加热炉恒温控制。
利用VB开发的典型pid控制程序,用于一阶加热炉恒温控制。-Using VB to develop a typical pid control procedures, for the first-order control of furnace temperature.
- 2022-01-24 09:41:09下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1