代码搜索:序列信号
找到约 10,000 项符合「序列信号」的源代码
代码结果 10,000
www.eeworm.com/read/327740/13065039
vi 5级m序列.vi
www.eeworm.com/read/240715/13202065
doc 文档序列化.doc
www.eeworm.com/read/317963/13492855
exe new最长子序列.exe
www.eeworm.com/read/305534/13766500
ppt 冲激序列的频谱.ppt
www.eeworm.com/read/487160/6516301
c 离散序列的卷积.c
#include
int main(){
int n[4]={1,2,5,4};
int m[7]={5,4,3,5,1,1,1};
int index_n=0,index_m=0;
int index_faltung=0;
int cont=0;
int long_n=0,long_m=0;
int faltu
www.eeworm.com/read/483302/6603498
doc 2m序列.doc
www.eeworm.com/read/480360/6672856
doc 是子序列吗.doc
www.eeworm.com/read/264863/11297698
doc 平稳时间序列建模.doc
www.eeworm.com/read/407780/11410819
txt 最长公共序列.txt
#include
#include
//求最长公共子序列
//两种做法:递归、状态数组表
/*
测试数据如下
输入:
7 5
1 3 4 4 7 8 9
3 4 4 8 10
输出:
4
*/
int cal(int *a,int *b,int ca,int cb)
{
int tempa,tempb;
if
www.eeworm.com/read/407780/11410835
txt 最长不减子序列.txt
#include
#include
#include
//最长不减子序列
#define NMAX 200
#define MIN -30000
int shuru[NMAX];
int ans[NMAX];
int find(int key,int len)
{
int low,high,mid,max