-
本程序包括5种数字滤波算法。
本程序包括5种数字滤波算法。-this program includes five digital filtering algorithms.
- 2023-01-03 11:10:04下载
- 积分: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
-
带通滤波器的设计
带通滤波器的设计, 基于matlab语言 ,利用双线性变换法 和切比雪夫法设计的数字带通滤波器
- 2023-03-02 23:45:03下载
- 积分:1
-
Kmeans的MapReduce实现
资源描述用Java首先编程实现了数据挖掘算法Kmeans,然后将该算法在MapReduce模型下并行化,资源有相关的讲解说明,有示例的输入。希望可以帮助需要的同学们
- 2022-01-25 22:16:32下载
- 积分:1
-
CRC算法和Ascii码转BCD算法
CRC算法和Ascii码转BCD算法-CRC algorithm and the Ascii code BCD switch algorithm
- 2023-01-17 03:50:04下载
- 积分:1
-
Exceptional C++ shows by example how to go about solid software engineering. Alo...
Exceptional C++ shows by example how to go about solid software engineering. Along with a lot of other material, this book includes expanded versions of the first 30 issues of the popular Internet C++ feature Guru of the Week (or, in its short form, GotW), a series of self-contained C++ engineering problems and solutions that illustrate specific design and coding techniques.
- 2022-12-15 03:15:03下载
- 积分:1
-
OMP字典学习,包含图像样本切割模块;适合内存不足情况下字典学习
资源描述OMP字典学习,包含图像样本切割模块;适合内存不足情况下字典学习,OMP字典学习,包含图像样本切割模块;适合内存不足情况下字典学习 很不错的字典训练方法哦谢谢大家 欢迎下载
- 2023-06-04 11:35:04下载
- 积分:1
-
最小曲率扩边代码
最小曲率扩边源代码,用于空白点补空,当在位场数据进行时域与频域转化时,离散数据必须为2的整数次幂,此时可对采集数据体利用最小曲率方法进行扩边,该算法精度较高,由于余弦扩边算法。
- 2022-03-11 07:25:23下载
- 积分:1
-
完整而高效的凸包求解方法,
资源描述该算法课通过解压运行QHULL-GO快捷方式,在命令行窗口输入相应的命令,即可计算convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram。并且代码还可以求解2维、3维甚至更高维的数据计算。是一个开放的源码算法,凝聚了很多大牛的心血,希望对大家有所帮助。
- 2022-08-09 17:36:53下载
- 积分:1
-
一个不错的简单实用的公式解析器,使用起来非常方便,容易上手。...
一个不错的简单实用的公式解析器,使用起来非常方便,容易上手。-A good simple and practical formula parser, very convenient to use, easy to use.
- 2022-10-23 12:25:03下载
- 积分:1