-
时域信号转换为频域信号的几个例子,本人都用过的,绝对能运行...
时域信号转换为频域信号的几个例子,本人都用过的,绝对能运行-Time-domain signal is converted to frequency domain signal a few examples, I have been used, absolutely can run
- 2023-05-04 14:45:03下载
- 积分: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
-
后缀树实现在Java中
后缀树实现在java中。该算法后缀树实现。字符串是从控制台输入和输出是在输出文件中生成。
- 2022-03-21 03:14:03下载
- 积分:1
-
差分进化算法的无功分配
应用背景差分进化(Differential Evolution,DE)算法是目前对于遗传算法的修正,和GA,PSO,ACO等进化算法一样,都是基于群体智能的随机并行优化算法,通过模仿生物群体内个体间的合作与竞争产生的启发式群体智能来指导优化搜索。关键技术基于差分进化算法的无功优化,采用IEEE30节点测试系统,接入分布式能源风电机组,程序为C语言编写,可算最小网损,若更改测试系统,可根据数据文件自行替换,支持环网。
- 2022-06-03 12:13:05下载
- 积分:1
-
fortran version of singular value decomposition subroutine, suitable for meteoro...
fortran版奇异值分解子程序,适合气象统计计算。-fortran version of singular value decomposition subroutine, suitable for meteorological statistical computing.
- 2022-06-27 17:25:01下载
- 积分:1
-
solution at eliment
有限元的分析程序 研究生很实用的 老师布置得有限元分析作业-solution at eliment
- 2023-08-16 18:50:03下载
- 积分:1
-
国际象棋骑士遍历问题
国际象棋的骑士遍历也称跳马问题、马踏棋盘问题:在8*8方格的国际象棋棋盘上,从任意指定的方格出发,为象棋中的马寻找一条走遍棋盘每一格并且只经过一次的一条路径。程序从“深度优先”、“广度优先”两种算法思想入手,并设计了Java GUI界面,很好地展示了骑士遍历的过程。
- 2022-03-24 22:04:15下载
- 积分:1
-
cinematic model of robot PA10
cinematic model of robot PA10
- 2022-03-26 18:33:58下载
- 积分:1
-
For solving a number of matrix even by the best algorithm that can optimize the...
对于求解多个矩阵连乘的最好的算法,能最优化的最短时间能求出值-For solving a number of matrix even by the best algorithm that can optimize the shortest time that can derive value
- 2023-03-03 19:10:03下载
- 积分:1
-
AA 树算法
关于主题的数据结构和 alogorithn aa 树的算法。项目在 c + + 编码,控制台 GUI,一步一步安排
- 2022-06-18 12:16:28下载
- 积分:1