代码搜索:实时分析
找到约 10,000 项符合「实时分析」的源代码
代码结果 10,000
www.eeworm.com/read/163868/10141641
m gd017_3.m
% 模糊聚类分析
% 模糊ISODATA聚类分析法
% 验证程序正确性(样本:P364例)
clc;
clear;
x=[0.80 17 0.22 0.67 0.09; 9.42 18 0.06 1.00 0.14;
5.91 11 0.36 1.00 0.21; 1.12 17 0.52 0.67 0.12;
2.96 17 0.57 1.00 0.02; 2
www.eeworm.com/read/440672/7684284
m fb.m
%-----Filter Bank Design for Subband Adaptive Microphine Arrays----%
% h=fb(M1,D1,L,wp) %
% h为原型分析滤波器, %
% M1为子带分解个数,D1为抽取个数,L为分析综合滤波器的长
www.eeworm.com/read/322312/13382963
cpp sentence.cpp
#include "sentence.h"
#include "fstream.h"
#include "iostream.h"
#include "stdlib.h"
#include "string.h"
#include "keyword.h"
#include "stdio.h"
#include "conio.h"
/*词法分析结果文件中的非法信息在语法分析中,在给出错误
www.eeworm.com/read/302188/13840074
cpp ll1.cpp
/* LL(1)分析法 */
#include
#include
#include
#include
#include
// { E->TG , T->FU , G->+TG|^ , U->*FU|^ , F->(E)|i }
char A[20]; /* 分析栈 */
char B[20
www.eeworm.com/read/402264/11540032
m isodata.m
% 模糊聚类分析
% 模糊ISODATA聚类分析法
% 验证程序正确性(样本:P364例)
clc;
clear;
x=[0.80 17 0.22 0.67 0.09; 9.42 18 0.06 1.00 0.14;
5.91 11 0.36 1.00 0.21; 1.12 17 0.52 0.67 0.12;
2.96 17 0.57 1.00 0.02; 2
www.eeworm.com/read/151147/12232040
m jiyinzhouqi.m
function jiyinzhouqi(filename,shift)
%短时自相关分析
%filename语音文件*.wav
%zhouqi基音周期
[signal,fs]=wavread(filename);
shift=round(fs*shift); %帧移
n1=fix(fs*0.97)+1; %分析起点970ms,帧长30ms
n2=fix(fs*1)
www.eeworm.com/read/130645/14179803
h lex.h
#ifndef _LEX_H_
#define _LEX_H_
#include "Globe.h"
#include
//以下是一些实现词法分析的关键方法
void Error(char *reason); //处理词法分析中的错误
int insert(char s[], int tok);
int lookup(char s[]);
boo