-
sap4源代码!by fortran 这是一个有限元计算的软件 可以完成平面,三维的计算功能...
sap4源代码!by fortran 这是一个有限元计算的软件 可以完成平面,三维的计算功能-SAP4 source code! By FORTRAN This is a finite element software can be completed planar, 3D computing power
- 2023-04-09 04:40:03下载
- 积分:1
-
SCE-UA算法
SCE-UA是一种全局优化算法,它集成了随机搜索算法、单纯形法、聚类分析及生物竞争演化等方法的优点,能有效处理目标函数反映面存在的粗糙、不敏感区及不凸起等问题,且不受局部最小点的干扰。其基本思路是将基于确定性复合型搜索技术和自然界中的生物竞争进化原理相结合,其关键部分为竞争的复合型进化算法(CCE)。在CCE中,每个复合型的顶点都是潜在的父辈,都有可能参与产生下一代群体的计算。每个子复合型的作用如同一对父辈。在构建过程中应用了随机方式选取子复合型,使得在可行域中的搜索更加彻底。 该代码采用SCE-UA算法进行垂向混合产流的参数自动率定,较好的解决了参数率定中的问题。
- 2022-03-15 12:43:19下载
- 积分:1
-
stm32四轴飞行器源码
应用背景四旋翼控制源码传感器读取 学习stm32,时钟控制,中断控制,对四轴感兴趣的朋友看看有很大帮助关键技术对遥控器数据读取,控制,可自行修改程序进行悬停 mpu6050读取四轴飞行器四路PWM输出自稳
- 2022-01-25 20:01:32下载
- 积分:1
-
Digital image processing of two
数字图像处理二维傅里叶变换代码,适用于图像处理研究人员和初级入门学生。-Digital image processing of two-dimensional Fourier Transform code, applied to image processing researchers and students in primary induction.
- 2022-02-04 07:03:51下载
- 积分:1
-
马鞍点程序
资源描述
若矩阵Am´n中的某个元素aij是第i行中的最小值,同时又是第j列中的最大值,则称此元素为该矩阵中的一个马鞍点。试在顺序存储结构或链式存储结构的情况下,编程求出矩阵中所有的马鞍点。
- 2022-02-27 09:05:32下载
- 积分:1
-
The use of C++ Realize the Graham scan method (for solving convex hull problems)...
使用C++实现的Graham扫描法(求解凸包问题),可设置生成随机点的个数、样式,同时支持设置显示范围、显示算法处理时间及使用文件导入导出点等功能。(文件格式为,头四个字节是点的个数,以后分别是各个点的x坐标和y坐标,每个数值均占4字节)。-The use of C++ Realize the Graham scan method (for solving convex hull problems), can be set to generate a random number of points, patterns, and at the same time to support the set display range, display algorithm processing time and the use of document features such as import and export points. (File format for the first four bytes is the number of points, after all points are x coordinates and y coordinates, each account for 4-byte value).
- 2022-02-04 23:48:30下载
- 积分:1
-
旅行商问题的模拟退火matlab源码程序
旅行商问题的模拟退火matlab源码程序-Traveling salesman problem matlab source of the simulated annealing procedure
- 2022-06-14 01:03:47下载
- 积分: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
-
B树的相关算法。源程序,C文件压缩。包括建立,插入等等相关的操作。...
B树的相关算法。源程序,C文件压缩。包括建立,插入等等相关的操作。-B-tree algorithms. The source, C compression. Including, insert, etc. related to the operation.
- 2022-02-21 21:26:34下载
- 积分:1
-
温度PID控制
温度控制PID调节,大家可以参考参考,用的是增量式PID调节方法,温控精度可以达到0.1摄氏度,具体我也不多说,Ki=KpT/Ti=0.8,微分系数Kd=KpTd/T=0.8,Td=0.0002,根据实验调得的结果确定这些参数
- 2023-03-13 01:00:04下载
- 积分:1