-
计算方法的追赶法
计算方法的追赶法-catch up with the calculation method
- 2022-10-31 14:10:02下载
- 积分:1
-
提供了PID控制的程序框图,可根据实际需要进行修改。
提供了PID控制的程序框图,可根据实际需要进行修改。-provide PID control of the process diagram, can be based on actual need to be modified.
- 2022-02-03 08:43:12下载
- 积分:1
-
基于奇异值分解的数字图像水印使用复数小波变换
A 新鲁棒非盲图像水印的方法在本文中。所提出的方法执行通过奇异值分解 (SVD) 改性的复杂小波变换 (CWT) 域图像而连续小波变换提供了更高的容量比实小波域。改性的适当的子带,导致毫不逊色保留质量的水印。拟议的技术的附加好处是其
最常见的攻击的鲁棒性。分析和实验结果表明多改进的性能与纯方法的基于奇异值分解的混合方法 (例如 DWT-SVD 为近年最好基于奇异值分解计划)。
- 2022-03-26 02:47:00下载
- 积分:1
-
Shortest Path
资源描述Write a program to find the weighted shortest distances from any vertex to a given source vertex in a digraph. If there is more than one minimum path from v to w, a path with the fewest number of edges is chosen. It is guaranteed that all the weights are positive and such a path is unique for any vertex.
- 2022-08-26 06:49:00下载
- 积分:1
-
在VC++环境用牛顿法去求解方程,从而得到方程的根
在VC++环境用牛顿法去求解方程,从而得到方程的根-search boots
- 2022-03-12 12:44:01下载
- 积分: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
-
The use of fixed step size fourth
使用定步长四阶龙格-库塔法解方程组,并给出一个含贝塞尔函数方程组的例子。-The use of fixed step size fourth-order Runge- Kutta method solution of equations, and gives a Bessel function equations with examples.
- 2023-07-14 13:05:03下载
- 积分:1
-
稀疏矩阵加法的另类算法
稀疏矩阵加法的另类算法-sparse matrix additive alternative algorithm
- 2022-03-02 03:15:57下载
- 积分:1
-
Java经典算法练习题初学java
Java最经典的算法题,初学者必懂。好好学,好好练,这就是学习的最终的秘诀 我本身是个菜鸟 初学者 希望大街给予批评指正 多多上传资料 供我们参考 谢谢大神们啦
- 2022-07-27 12:17:19下载
- 积分:1
-
页面置换算法代码,语言采用c++。实现了FIFO算法,LRU算法,其中,LRU采用经典的LRU算法,由于该算法占用资源较大,多数OS采用改进的LRU算法....
页面置换算法代码,语言采用c++。实现了FIFO算法,LRU算法,其中,LRU采用经典的LRU算法,由于该算法占用资源较大,多数OS采用改进的LRU算法.-pages replacement algorithm code language used c. To achieve the FIFO algorithm, the LRU algorithm, which, the LRU is a classical LRU algorithm, the algorithm occupy larger resources, the majority of the improved OS LRU algorithm.
- 2022-08-18 17:30:25下载
- 积分:1