-
多示例学习工具箱
用matlab编写的multiple-instance learning工具箱,实现了多种mil的算法,包括emdd, mi-svm, citation-knn等,同时支持不同的测试策略,如随机划分,leave-one-out,ten-fold-validation等,里面包含了libsvm的matlab实现,可以作为一个独立的算法使用。包中自带测试数据集,为标准的多示例数据集,通过扩展可以进行MIML的训练和测试任务。
- 2022-03-01 13:58:05下载
- 积分:1
-
基于gallager引理的LDPC码的BP译码算法
该程序是用matlab仿真BP译码算法的译码性能曲线,同时证明了gallager引理。程序中可以自由设置码长,迭代次数,仿真点数,通过这些参数的设置可以得到精确度不同的误码性能曲线。
- 2022-01-25 23:12:08下载
- 积分:1
-
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。...
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。-use of the finite difference method for Volterra equation here as a variable element of the equation, As the same time contain differential equations and integral, the general solution is definitely difficult.
- 2022-01-27 16:39:27下载
- 积分: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
-
妈妈源代码
资源描述妈妈是计算电磁兼容问题的重要方法。
- 2022-02-26 10:27:32下载
- 积分:1
-
C++ BP算法源程序.rar
C++ BP算法源程序.rar-C BP algorithm source. Rar
- 2022-10-23 04:25:03下载
- 积分:1
-
a new numerical algorithm
一种新型的数值求解算法-a new numerical algorithm
- 2022-12-01 11:45:03下载
- 积分:1
-
通过C++对偶单纯形法
#包括“stdafx.h”
- 2022-03-24 21:57:23下载
- 积分:1
-
Abstract: This paper aims to study a thermal complex objects can be an effective...
摘要:本文旨在研究一种能对复杂热工对象的有效建模方法。基于遗传算法的辨识方法有较强的抗干扰能力,对低、高阶系统、延时系统都可以达到很好的辨识效果。根据单元机组的低阶非线性模型,推导出一个双进双出、能够描述机组动态特性及机炉间相互耦合关系的协调控制系统传递函数矩阵。依次模型为基础,提出一种基于改进的遗传算法的参数辨识方法。-Abstract: This paper aims to study a thermal complex objects can be an effective modeling method. Identification method based on genetic algorithm has strong anti-jamming ability, low, high-end systems, delay systems can achieve very good recognition results. According to unit power plant low-level non-linear model, derived a double inlet and outlet, can describe the dynamic characteristics and boiler-turbine unit is coupled between two relations, coordination and control system transfer function matrix. Turn model was proposed based on improved genetic algorithm based on parameter identification method.
- 2022-01-24 09:15:33下载
- 积分:1
-
时钟接口
应用背景根据地铁时钟系统的内定协议进行数据解析、处理。PIS系统与时钟系统接口软件能够接收时钟系统发送的时钟信息,并且根据该信息校正控制中心服务器的系统时钟。关键技术串口通讯,软件主要有三个功能模块,分别是负责RS422链路数据接收的模块,以及数据处理模块,其中:数据接收模块,完成接口属性配置,并接收由RS422接口收到的数据;数据解析模块将RS422接口收到的数据解析成会议纪要中的格式,在接收到一个符合会议纪要中定义长度的数据后,将通知数据处理模块;数据处理模块,根据会议纪要中的描述处理数据。
- 2022-05-06 02:44:42下载
- 积分:1