-
Parallele 并行算法
基于图像处理的算法 parallele并行编程算法 基于图像处理的梯度算法 gradiant算法,能够圈出图像轮廓Opencv读取图像灰度图像
- 2022-07-03 11:22:48下载
- 积分:1
-
很简单的程序,可以远程通过MDL laserace300火激光测距仪…
Very simple program that can fire laser rangefinder MDL laserACE300 remotly via rs232 and register output to file - work only with this type and ither my programs can fire many MDL s-Very simple program that can fire laser rangefinder MDL laserACE300 remotly via rs232 and register output to file- work only with this type and ither my programs can fire many MDL s
- 2023-08-06 17:55:03下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
矩阵数组
应用背景该算法的基础上,它的基础上的+ +代码关键技术这个代码库是基于C++ + +代码,这只是简单的代码,但也许可以帮助
- 2022-12-29 17:35:03下载
- 积分:1
-
地震勘探频率-波数域波动方程正演相移加插值法正演程序
资源描述地震勘探中,频率-波数域PSPI波动方程正演模拟C语言程序,适合与初学正演的人,其在相移法的基础上利用插值提高了算法精度,同时相比时域有限差分运算更快,但仍然不能适应横向速度变化过大的速度模型。
- 2022-07-08 04:53:42下载
- 积分:1
-
opencv实现的retinex图像增强
- 2022-01-28 11:03:08下载
- 积分:1
-
本代码是《计算机常用数值计算算法与程序 C++版》一书的配套数值拟合与逼近代码,这些C++程序已经在Virsual C++ 6.0环境下通过。注意,在VC++...
本代码是《计算机常用数值计算算法与程序 C++版》一书的配套数值拟合与逼近代码,这些C++程序已经在Virsual C++ 6.0环境下通过。注意,在VC++ 6.0中设置好路径,特别是include目录(文件夹)的路径,否则在编译时会出现找不到头文件的错误,使编译无法正常进行。-the code is "commonly used computer numerical algorithms and procedures C version," a book supporting numerical approximation fitted with the code, these procedures have been in C C 6.0 Virsual environment through. The attention of the VC 6.0 installed path, in particular include directory (folder) path, otherwise there will be compiled header files could not find the mistakes and the compiler not normal.
- 2022-06-27 07:38:27下载
- 积分:1
-
ZIBEE程序
Description: This application functions as a packet error rate (PER) tester. One node is set up as transmitter and the other as receiver. The role and configuration parameters for the PER test of the node is chosen on initalisation by navigating the joystick and confirm the choices with S1. The configuration parameters are channel, burst size and tx power. Push S1 to enter the menu. Then the configuration parameters are set by pressing joystick to right or left (increase/decrease value) and confirm with S1.
- 2022-06-12 05:42:09下载
- 积分:1
-
基于ARM的AD读取程序
基于ARM的AD读取程序,通过改变电位器的值大小,可以通过超级终端显示AD的数值变化,实测可用,目标板是s3c2410
- 2022-07-08 07:35:44下载
- 积分:1
-
数据挖掘关联规则先验算法
function.txt是测试文件,以文件形式读取,都是以字符格式读入的,已试过,可以使用,它开始会将频繁项集都展示出来,如频繁一项集频繁二项集,可以在代码开始自己设置支持度
- 2022-01-23 10:29:14下载
- 积分:1