-
Image Processing VHDL Code, Including Stitching & Colour Blending Module
Image Processing VHDL Code,
Including Stitching & Colour Blending Module-Image Processing VHDL Code, Including Stitching & Colour Blending Module
- 2022-03-11 16:52:01下载
- 积分:1
-
SC7A20驱动
说明: 国产Gsensor SC7A20的驱动程序,可以用于各种物联网应用。(the driver for SC7A20, which can be used to IOT)
- 2020-06-16 13:00:01下载
- 积分:1
-
calcultor
用C++编写的科学计算器,功能比较齐全实用。(Written in C++ scientific calculator, function more complete and practical.)
- 2015-03-03 16:29:50下载
- 积分:1
-
bbs-SNR_Max
说明: 学习盲源分离原理及信号处理,适合初学者对盲源分离算法的学习(Learning Blind Source Separation Principle and Signal Processing, Suitable for beginners to learn Blind Source Separation Algorithms)
- 2020-06-25 07:20:01下载
- 积分:1
-
约瑟夫环算法
Joseph Ring 算法-Joseph Ring algorithm
- 2022-04-21 07:07:42下载
- 积分:1
-
Backtrack
0-1背包Backtrack,算法中回索法的一个好例子(0-1 Knapsack Backtrack, back Sofa algorithm a good example of)
- 2009-07-08 17:24:40下载
- 积分:1
-
数值分析要求:第二题编成命令文件即可,其中阶乘可以单独编成函数文件在命令文件中调用,也可以直接在你所编的命令文件中利用循环语句直接计算;
第四题编成通用的...
数值分析要求:第二题编成命令文件即可,其中阶乘可以单独编成函数文件在命令文件中调用,也可以直接在你所编的命令文件中利用循环语句直接计算;
第四题编成通用的程序,建议编成函数文件。提示:可以把多项式的系数和所需要求解的点设为参数。-Numerical Analysis of requirements: the second title of the command file can be compiled, which can factorial function into a separate file in order to call the document can also be made directly in your document, use the command loop direct calculation into fourth title common procedures, the proposed document into function. Tip: polynomial coefficients can be requested and the required parameters set point solution.
- 2022-01-25 22:12:15下载
- 积分:1
-
AGNES
层次聚类,凝聚法指的是初始时将每个样本点当做一个类簇,所以原始类簇的大小等于样本点的个数,然后依据某种准则合并这些初始的类簇,直到达到某种条件或者达到设定的分类数目。(hierarchical clustering)
- 2018-04-15 18:31:00下载
- 积分:1
-
DCDCconwerter
双向DCDC非隔离型变换器simulink仿真模型(DCDCDconverter/imulink/model)
- 2021-03-05 20:29:31下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1