代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/226583/14457366
m mainbem.m
%% *********** A STATIC POTENTIAL BEM PROGRAM USING LINEAL ELEMENT************
% 程序参考. "蔡瑞英等 --边界元法程序设计及工程应用" 1995
% 采用四节点四边形单元,没有考虑角点影响
%% variables used in the bem program
global g
www.eeworm.com/read/226462/14465245
m bp9.m
% bp9.m附加动量法
%
% 初始化
P=[-6.0 -6.1 -4.1 -4.0 5.0 -5.1 6.0 6.1];
T=[0 0 0.97 0.99 0.01 0.03 1.0 1.0];
[R,Q]=size(P);[S,Q]=size(T);
disp('The bias B is fixed at 3.0 and will not learn')
Z1=menu
www.eeworm.com/read/223339/14644660
cpp algo0701.cpp
Status CreateGraph( MGraph &G ) { // 算法7.1
// 采用数组(邻接矩阵)表示法,构造图G。
scanf(&G.kind); // 自定义输入函数,读入一个随机值
switch (G.kind) {
case DG: return CreateDG(G); // 构造有向图G
case
www.eeworm.com/read/121616/14747141
txt c函数之o.txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main(void)
www.eeworm.com/read/121616/14747183
txt c函数之u.txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned long lnumbe
www.eeworm.com/read/121616/14747208
txt c函数之v.txt
函数名: vfprintf
功 能: 送格式化输出到一流中
用 法: int vfprintf(FILE *stream, char *format, va_list param);
程序例:
#include
#include
#include
FILE *fp;
int vfpf(cha
www.eeworm.com/read/220985/14780807
h mpwordseg.h
CString SegmentHzStrMP(CString s1); // 最大概率法分词函数
CString SegmentSentenceMP(CString s1); // 对句子进行最大匹配法分词处理的函数
void SegmentAFileMP(CString FileName); // 对文本文件进行最大匹配法分词操作
short getTmpWords(CString
www.eeworm.com/read/220982/14780906
h mpwordseg.h
CString SegmentHzStrMP(CString s1); // 最大概率法分词函数
CString SegmentSentenceMP(CString s1); // 对句子进行最大匹配法分词处理的函数
void SegmentAFileMP(CString FileName); // 对文本文件进行最大匹配法分词操作
short getTmpWords(CString
www.eeworm.com/read/219502/14878312
cpp algo0701.cpp
Status CreateGraph( MGraph &G ) { // 算法7.1
// 采用数组(邻接矩阵)表示法,构造图G。
scanf(&G.kind); // 自定义输入函数,读入一个随机值
switch (G.kind) {
case DG: return CreateDG(G); // 构造有向图G
case
www.eeworm.com/read/217716/14952875
m kalman3.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%目标水平运动
%初始位置 x0=-2000m y0=500m
% V=10m/s 扫描周期T=5s deltaa=0 deltax=100m
%蒙特卡咯法仿真跟踪滤波器
%仿真次数100
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%