-
a prepared using Matlab, harmonic signal for the estimated number of procedures...
一个用matlab编写的,用于估计信号谐波个数的程序,堪称经典!-a prepared using Matlab, harmonic signal for the estimated number of procedures for his classic!
- 2022-03-18 12:09:35下载
- 积分:1
-
最优直方图算法
V Optimal Histogram algorithm
simple implementation using dynamic programming
- 2022-05-31 08:45:42下载
- 积分: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
-
有限元的分析程序,对于初学有限元在结构中的应用很好用
有限元的分析程序,对于初学有限元在结构中的应用很好用-solution at eliment
- 2022-01-27 13:55:46下载
- 积分:1
-
数据结构源码实现
很全的数据结构源代码,线性表、树、图的代码都有具体实现。以及字符串的各种操作
- 2022-02-06 11:51:57下载
- 积分:1
-
关于数学组合题的解法.用模板类+回归函数实现,思路简单清晰.这是我在索贝数码公司时接到的一道应聘题.含有算法描述文档....
关于数学组合题的解法.用模板类+回归函数实现,思路简单清晰.这是我在索贝数码公司时接到的一道应聘题.含有算法描述文档.-on mathematical solution to the problem of portfolio. Template function to achieve the reunification category, the thinking is clear and simple. This is the closest digital received by the company and that a candidate. Documents containing algorithm description.
- 2023-07-03 19:50:02下载
- 积分:1
-
生成条形码的DLL文件及其使用例子
生成条形码的DLL文件及其使用例子- Production bar code DLL document and its use example
- 2022-04-01 10:10:27下载
- 积分:1
-
RLS 算法
实现复杂有价值的数据的 RLS 算法。(算法 5.3-预订: 自适应滤波: 算法和实际执行,尼斯)
- 2022-02-24 16:41:57下载
- 积分:1
-
monte carlo方法在各个方面中的小应用
monte carlo方法在各个方面中的小应用-monte carlo method in all aspects of small applications
- 2022-02-10 11:48:07下载
- 积分:1
-
Matlab主成分分析代码
这成分分析法(PCA),用来降低维度,包含一份Matlab测试源代码,一份测试文件,和源码运行结果,即Matlab figure,共同学习,希望对大家有所帮助!
- 2022-02-12 13:40:17下载
- 积分:1