-
计算作图的源程序
计算作图的源程序-calculated mapping of the source
- 2022-06-11 22:14:30下载
- 积分:1
-
compared the computing time of DFT and FFT arithmetic
dft与fft运算时间比较-compared the computing time of DFT and FFT arithmetic
- 2022-09-16 04:10:03下载
- 积分:1
-
sirt算法
% Syntax: x=sirt(A,b,tolx,maxiter)
%
% Inputs:
% A = Constraint matrix. A=一个约束矩阵
% b = right hand side. b=右边
% tolx = Terminate when the relative diff between tolx=终止时,两次迭代之间的相对差异小于tolx。
% two iterations is less than tolx.
% maxiter = Stop after maxiter iterations. maxiter=停止迭代后
%
% Outputs:
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-06 13:18:49下载
- 积分:1
-
C语言进行图像处理(入门的经典)
资源描述本代码使用C语言戳图像处理基本的处理,包括读取显示,涉及到很多基础的知识,包括文件头和指针各种等,对学习C语言和图像处理的各种基本知识都有着一定的帮助,欢迎大家下载,一起进步,一起学习。代码注释详细,可阅读行强,希望大家喜欢,欢迎下载哦。
- 2023-03-15 20:50:04下载
- 积分:1
-
用Visual C++实现的绘制函数图像的程序。给定任意函数表达式,可直观显示该函数图像。...
用Visual C++实现的绘制函数图像的程序。给定任意函数表达式,可直观显示该函数图像。-Visual C achievable image mapping function procedures. Given arbitrary function expression, visual images showed that the function.
- 2023-06-20 07:45:03下载
- 积分:1
-
椭圆拟合的误差算法,拟合点到椭圆心的距离减去拟合点对应在椭圆上的点到椭圆心的距离,有效分析椭圆拟合的误差问题,并让其在对话框中显示出来...
椭圆拟合的误差算法,拟合点到椭圆心的距离减去拟合点对应在椭圆上的点到椭圆心的距离,有效分析椭圆拟合的误差问题,并让其在对话框中显示出来-The error ellipse fitting algorithm, fitting point to the ellipse center distance minus the corresponding fitting point on the ellipse to the ellipse center point of the distance, the effective analysis of the error ellipse fitting problem, and let it be shown in the dialog box
- 2022-03-18 15:29:28下载
- 积分:1
-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1
-
查表型crc16校验算法,c源码
查表型crc16校验算法,c源码-Lookup- crc16 checksum algorithm, c FOSS
- 2022-01-27 23:41:35下载
- 积分:1
-
使用栈实现括弧配对问题
使用栈实现括弧配对问题-use Stack bracket matching problem
- 2022-12-07 22:35:03下载
- 积分:1
-
c编写的蒙特卡罗算法,载的一个师兄的,验证过,可用
c编写的蒙特卡罗算法,载的一个师兄的,验证过,可用-c prepared by the Monte Carlo algorithm, a senior set, and verified, can be used
- 2022-06-14 19:08:47下载
- 积分:1