-
图像压缩的源代码
PCA进行SVD分解的图像压缩它是在MATLAB中实现
- 2022-02-13 13:27:26下载
- 积分:1
-
该程序是作者编写的程序,实现了图和树中的部分算法。
该程序是作者编写的程序,实现了图和树中的部分算法。-that the procedure was prepared by the author of procedures, a map and part of the tree algorithm.
- 2022-03-05 11:00:37下载
- 积分:1
-
20M带宽高斯信道
程序说明:
1. 实现用2前导序列进行时间同步,但必须在高信噪比下,参考信噪比为30dB;进一步的优化见后续版本;
2. 实现一发多收情况下,通过AWGN信道的后的相位补偿合并,并进一步分析合并增益!
3. 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论
- 2022-01-25 16:56:16下载
- 积分:1
-
这是硕士生计算机软件专业组合数学的一个序数算法演示,仅供参考。...
这是硕士生计算机软件专业组合数学的一个序数算法演示,仅供参考。-This is the master computer software professional combination of a mathematical algorithm sequence demonstration purposes only.
- 2022-02-27 03:43:04下载
- 积分: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
-
kNN landsat
KNN算法碳映射
- 2022-03-13 15:07:39下载
- 积分:1
-
SOR algorithm for solving linear equations, c++, numerical methods
SOR算法解线性方程组,c++,数值方法-SOR algorithm for solving linear equations, c++, numerical methods
- 2022-03-21 16:09:13下载
- 积分:1
-
哥德巴赫猜想:哥德巴赫(哥德巴赫)曾提出这样一个猜想:2000以内…
Goldbach s conjecture: Goldbach(哥德巴赫)曾经提出了一个这样的猜想: 对于2000 以内的正偶数都能够分解为两个素数之和。 要求: 该题是一个猜想,我们不去证明它,而是通过编程序来验证 该猜想是否正确。 输入: 用户从键盘任意输入一个自然数。 输出: 给出满足猜想的两个自然数。-Goldbach conjecture : Goldbach (Goldbach) had raised such a guess : 2000 within the can is even divided into two prime numbers and. Requirements : The title is a guess, we do not prove it, but through programmed to verify the guess is correct. Input : arbitrary user input from the keyboard to a natural number. Output : meet guess is the natural number two.
- 2023-05-19 07:45:03下载
- 积分:1
-
基于遗传算法的机器人路径规划
基于遗传算法的机器人路径规划的实现,已通过测试验证,是可以运行的C++程序。
- 2022-02-10 09:21:53下载
- 积分:1
-
贪吃蛇游戏
对贪吃蛇游戏用VC++进行实现,包含了游戏里的主要功能,加入了关卡设置。
- 2022-03-20 23:58:42下载
- 积分:1