-
QPSK调制解调算法FPGA实现代码
该算法实现了QPSK调制解调,载波同步算法采用costas环,位定时采用Gardner算法
- 2023-04-22 23:35:05下载
- 积分:1
-
字符的快速排序算法。拉链
字符的快速排序算法.zip-characters quicksort algorithm. Zip
- 2022-07-23 19:30:10下载
- 积分:1
-
Schrodinger Equation numerical calculation equation
Schrodinger Equation
数值计算中的方程-Schrodinger Equation numerical calculation equation
- 2022-04-17 00:16:20下载
- 积分:1
-
LU分解法求解线性方程组的VB.NET源码.里面有详细的使用说明.
LU分解法求解线性方程组的VB.NET源码.里面有详细的使用说明.-LU decomposition method for solving linear equations of VB.NET source. There are detailed instructions.
- 2022-06-16 23:06:35下载
- 积分:1
-
complex algorithm
复数运算详细算法-complex algorithm
- 2022-02-07 16:21:29下载
- 积分:1
-
MATLAB functions: LLL.m, Brun.m, Seysen.m. These functions implement different lattice reduction al
The supplementary material consists of three MATLAB functions:
LLL.m
Seysen.m
Brun.m
These functions implement different lattice reduction algorithms in MATLAB.
The functions are well-documented, explaining their functionality as well
as how to run them. The software is provided for free and without warranty.
- 2023-07-10 23:10:03下载
- 积分:1
-
33届acm亚洲区域赛成都赛区1001题源码
33届acm亚洲区域赛成都赛区1001题源码-33rd acm Chengdu Asian Regional Conference tournament title of 1001 source
- 2023-02-08 15:15:03下载
- 积分:1
-
基于matlab的几个kalman滤波以及多传感器融合和wk算法的程序
基于matlab的几个kalman滤波以及多传感器融合和wk算法的程序-Matlab based on several kalman filtering and multi-sensor fusion algorithm and procedures wk
- 2023-04-10 18:35:03下载
- 积分: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
-
《科学工程计算C语言算法》一书代码。C语言编写。均写成函数形式,可以直接调用。包括数值微分、数值积分、插值、方程求解等数值算法。...
《科学工程计算C语言算法》一书代码。C语言编写。均写成函数形式,可以直接调用。包括数值微分、数值积分、插值、方程求解等数值算法。-"scientific engineering calculation algorithm C language," a code book. C language. Functions were written form can be called directly. Including numerical differentiation, numerical integration, interpolation, equation solving numerical algorithms.
- 2023-04-20 15:05:03下载
- 积分:1