-
列选主元的Gauss消去法
列选主元的Gauss消去法-out how the PCA Gaussian Elimination
- 2022-12-23 12:50:03下载
- 积分:1
-
信道容量的C实现,附详细注释
资源描述
信道容量计算的C实现,附详细注释。上传的源代码属于个人原创,非抄袭,从来没有上传过,已编译通过,我自己的硕士论文里头已经用过了,绝对真实可信
- 2022-08-16 14:16:09下载
- 积分:1
-
飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量...
飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量-Spacecraft relative position vector of the station unit vector in the equatorial coordinate system of the three subscales
- 2023-04-17 08:30:03下载
- 积分:1
-
0 / 1背包问题是一个N P
0 / 1背包问题是一个N P-复杂问题,为了解决该问题,,将用回溯算法解决该问题。既然想选择一个对象的子集,将它们装入背包,以便获得的收益最大,则解空间应组织成子集树的形状(如图1 6 - 2所示)。该回溯算法与4 . 2节的装载问题很类似。首先形成一个递归算法,去找到可获得的最大收益。然后,对该算法加以改进,形成代码。改进后的代码可找到获得最大收益时包含在背包中的对象的集合。-0/1 knapsack problem is a P-complex issues, in order to solve the problem, and will be used backtracking algorithm to solve the problem. As to the choice of a subset of object, they will load a backpack, in order to obtain the greatest profits, the solution should be organized into space subset of the shape of the tree (Figure 1 6-2 below). The backtracking algorithms and 4. Two loading problem is very similar. Forming a recursive algorithm to get the maximum benefit available. Then, this algorithm is modified to form code. Improved code can be found at the maximum benefits included in the backpack of a collection of objects.
- 2022-02-26 09:06:08下载
- 积分:1
-
ICA算法语音BSS
经典的语音ICABSS算法,可以进行基本的信号分离, 还可以兼容复数领域的计算,非常适合信号盲分离。
里面还有一个实例,非常适合语音的
- 2023-01-25 10:40:03下载
- 积分:1
-
这是一个从国外网站下载的ICA 的matlab源代码
这是一个从国外网站下载的ICA 的matlab源代码-This is a website of the ICA from abroad, the source code of the matlab
- 2022-02-16 04:51:32下载
- 积分:1
-
Shelf滤波器设计
该音频处理算法涉及:压缩器、扩展器、限幅器三种音频处理的常用算法,使用C++编写。
- 2022-04-27 18:25:44下载
- 积分:1
-
MATLAB中TSP问题的布谷鸟搜索算法
这是使用布谷鸟搜索算法解决TSP问题的代码示例,了解TSP解决方案的效果,提高个别表达的效率稳健性。
- 2022-01-26 01:10:41下载
- 积分:1
-
16 位 二进制 随机数 生产 函数和Manchester编码
16 位 二进制 随机数 生产 函数和Manchester编码-16-bit binary random number production function and Manchester encoding
- 2022-07-16 18:39:35下载
- 积分:1
-
C经典代码大全
一些C编程语言经典编程题目,希望对大家有用。#include
int main(void)
{
unsigned int i = 0x12345678;
char*pc =(char*)&i;
printf("0x%x
", *pc);
double *pd = (double*)&i;
printf("%f
", *pd);
printf("sizeof pc = %d sizeof pd = %d
", sizeof(pc), sizeof(pd));
return 0;
}
- 2022-04-01 10:36:20下载
- 积分:1