CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - LSS
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - LSS - List
[
Other
]
CSVtoXMLv1_1.lss
DL : 0
lotus notes程序,将csv文件转换为xml文件-lotus notes procedure, and csv file conversion for xml
Update
: 2008-10-13
Size
: 3.63kb
Publisher
:
ligk
[
ELanguage
]
pl/0
DL : 0
/*PL/0编译系统C版本头文件pl0.h*/ /* typedef enum { false, true } bool; */ #define norw 13 /*关键字个数*/ #define txmax 100 /*名字表容量*/ #define nmax 14 /*number的最大位数*/ #define al 10 /*符号的最大长度*/ #define amax 2047 /*地址上界*/ #define levmax 3 /*最大允许过程嵌套声明层数[0,levmax]*/ #define cxmax 200 /*最多的虚拟机代码数*/ /*符号*/ enum symbol{ nul, ident, number, plus, minus, times, slash, oddsym, eql, neq, lss, leq, gtr, geq, lparen, rparen, comma, semicolon, period, becomes, beginsym, endsym, ifsym, thensym, whilesym, writesym, readsym, dosym, callsym, constsym, varsym, procsym, }; #define symnum 32 /*名字表中的类型*/ enum object{ constant, variable, procedur, }; /*虚拟机代码*/ enum fct{ lit, opr, lod, sto, cal, inte, jmp, jpc, }; #define fctnum 8 /*虚拟机结构代码*/ struct instruction { /*454*/ enum fct f; // 虚拟机代码指令 int l; //引用层与声明层的层次差 int a; //根据f的不同而不同 }; FILE * fas; //输出名字表 FILE * fa; //输出虚拟机代码 FILE * fa1; //输出源文件及其各行对应的首地址 FILE * fa2; //输出结果 bool listswitch; //显示虚拟机代码与否 bool tableswitch; //显示名字与否 char ch; //获取字符的缓冲区,getch使用 enum symbol sym; //当前的符号 char id[al+1]; //当前ident,多出的一个字节用于存放0 int num; //当前number int cc,ll; //getch使用的计数器,cc表示当前字符(ch)的位置 int cx; //虚拟机代码指针,取值范围[0,cxmax-1] char line[81]; //读取行缓冲区 char a[al+1]; //临时符号,多出的一个字节用于存放0 struct instruction code[cxmax]; //存放虚拟机代码的数组 char word[norw][al]; //保留字 enum symbol wsym[norw]; //保留字对应的符号值 enum symbol ssym[256]; //单字符的符号值 char mnemonic[fctnum][5]; //虚拟机代码指令名称 bool declbegsys[symnum]; //表示声明开始的符号集合 bool statbegsys[symnum]; //表示语句开始的符号集合 bool facbegsys[symnum]; //表示因子开始的符号集合 //名字表结构 struct tablestruct { char name[al]; //名字 enum object kind; //类型:const,var,array or procedure int val; //数值,仅const使用 int level; //所须层,仅const不能用 int adr; //地址,仅const不能用 int size; //需要分配的数据空间,仅procedure使用 }; struct tablestruct table[txmax]; //名字表 FILE * fin; FILE * fout; char fname[al]; int err; //错误计数器 //当函数中发生fatal error时,返回-1告知调用它的函数,最终退出程序 #define getsymdo if(-1==getsym()) return -1 #define getchdo if(-1==getch()) return -1 #define testdo(a,b,c) if(-1==test(a,b,c)) return -1 #define gendo(a,b,c) if(-1==gen(a,b,c)) return -1 #define expressiondo(a,b,c) if(-1==expression(a,b,c)) return -1 #define factordo(a,b,c) if(-1==factor(a,b,c)) return -1 #define termdo(a,b,c) if(-1==term(a,b,c)) return -1 #define conditiondo(a,b,c) if(-1==condition(a,b,c)) return -1 #define statementdo(a,b,c) if(-1==statement(a,b,c)) return -1 #define constdeclarationdo(a,b,c) if(-1==constdeclaration(a,b,c)) return -1 #define vardeclarationdo(a,b,c) if(-1==vardeclaration(a,b,c)) return -1 void error(int n); int getsym(); int getch(); void init(); int gen(enum fct x,int y ,int z); int test(bool *s1,bool *s2,int n); int inset(int e,bool *s); int addset(bool *str,bool * s1,bool * s2,int n); int subset(bool *str,bool * s1,bool * s2,int n); int mulset(bool *str,bool * s1,bool * s2,int n); int block(int lev,int tx,bool * fsys); void interpret(); int factor(bool * fsys,int * ptx,int lev); int term(bool * fsys,int * ptx,int lev); int condition(bool * fsys,int * ptx,int lev); int expression(bool * fsys,int * ptx,int lev); int statement(bool * fsys,int * ptx,int lev); void listcode(int cx0); int vardeclaration(int *ptr, int lev,int *ptx); int constdeclaration(int *ptr, int lev,int *ptx); int position(char * idt,int tx); void enter(enum object k,int * ptx,int lev, int * pdx); int base(int l,int * s,int b)
Update
: 2010-09-13
Size
: 24.55kb
Publisher
:
xqq771084591
[
Documents
]
Can & CanOpen
DL : 1
LSS子协议(关于节点地址和波特率设置
Update
: 2011-03-31
Size
: 220.39kb
Publisher
:
happy_wtl
[
Other
]
CSVtoXMLv1_1.lss
DL : 0
lotus notes程序,将csv文件转换为xml文件-lotus notes procedure, and csv file conversion for xml
Update
: 2025-02-19
Size
: 3kb
Publisher
:
ligk
[
Software Engineering
]
lssvm
DL : 0
很好的软件包,试试看,比libsvm有很多优点,我用过-good package, and see what happens, libsvm have a lot of strengths, I used
Update
: 2025-02-19
Size
: 402kb
Publisher
:
孙秋艳
[
Software Engineering
]
lss
DL : 0
嵌入式论文 华中科技大学 2009年版 这个事参考资料自己写的-The qianrushi lunwen.
Update
: 2025-02-19
Size
: 683kb
Publisher
:
zhangxx
[
Software Engineering
]
lssvm
DL : 0
是关于LS-SVMlab工具箱的使用说明方法介绍(英文版),以及一篇用此工具包实现时间序列预测的论文,希望对大家有所帮助。-LS-SVMlab toolbox on the instructions for use method description (English), and use this tool kit to achieve a time series forecasting papers you want to help.
Update
: 2025-02-19
Size
: 1.31mb
Publisher
:
赵雅秦
[
CSharp
]
lss
DL : 0
前后台管理和增删改查功能的实现,本站用C#语言编写。-Additions and deletions to change before and after the station management and implementation of search function
Update
: 2025-02-19
Size
: 2.75mb
Publisher
:
李受生
[
Books
]
2_551
DL : 0
CANOPEN中CIA305协议的LSS中文翻译-CANOPEN in CIA305 agreement LSS Chinese translation
Update
: 2025-02-19
Size
: 220kb
Publisher
:
guoxing
[
Other
]
PL0
DL : 0
pl0实验,生成器 增加保留字最大个数 增加保留字类型 增加双符号-EQL, NEQ, LSS, LEQ, GTR, GEQ,LPAREN, RPAREN, COMMA,SEMICOLONPERIOD,PE,ME,PP,MM
Update
: 2025-02-19
Size
: 361kb
Publisher
:
魏国瑶
[
Internet-Network
]
canopenlss
DL : 0
can open协议LSS层,方便在CAN网络上开发canopen协议的工程师-LSS can open protocol layer to facilitate the development of the CAN network protocol engineer canopen
Update
: 2025-02-19
Size
: 218kb
Publisher
:
袁亮
[
Algorithm
]
lss
DL : 0
最小二乘法,数值计算中经常使用到的算法,曲线拟合、方程组求解等-the least squared solution
Update
: 2025-02-19
Size
: 2kb
Publisher
:
taoyqc
[
Other
]
Program
DL : 1
统计算法 里面很多经典的多元统计算法程序 PLS,PCR GA PCR-UVE PLS-UVE UVE-CV PLS-GA MLR LWR 人工神经网络 SPA LSS等-Statistical algorithms, there are many classic multivariate statistical algorithm PLS, PCR GA PCR-UVE PLS-UVE UVE-CV PLS-GA MLR LWR artificial neural network SPA LSS
Update
: 2025-02-19
Size
: 3.22mb
Publisher
:
木华
[
assembly language
]
Lss
DL : 1
用于外汇黄金MT4系统买卖参考,具体需要使用者自己领悟。-For foreign exchange gold MT4 trading reference to the specific needs of the user' s own insight.
Update
: 2025-02-19
Size
: 1kb
Publisher
:
vic
[
Program doc
]
DS305
DL : 0
cia ds305(LSS),canopen中文协议,可以参考-canopen ds305 chinese for reference
Update
: 2025-02-19
Size
: 209kb
Publisher
:
runclever
[
OpenGL program
]
LSS-robot
DL : 0
采用OPENgl绘制机器人线扫略体模型源代码程序,可用于工业机器人碰撞检测使用。-opengl draw LSS robot model
Update
: 2025-02-19
Size
: 7kb
Publisher
:
徐杰
[
Other
]
LQR_comp
DL : 0
computes the LQG controller parameters, [K1 K2 K3 K4] system states are the HF components of: LSS speed, HSS speed, coupling internal torque, wind torque uses the linearzid WECS model with parameters computed in linf_param_comp.m file uses quadratic performance index with weighting coefficient weight - computes the LQG controller parameters, [K1 K2 K3 K4] system states are the HF components of: LSS speed, HSS speed, coupling internal torque, wind torque uses the linearzid WECS model with parameters computed in linf_param_comp.m file uses quadratic performance index with weighting coefficient weight
Update
: 2025-02-19
Size
: 1kb
Publisher
:
ntulix
[
OA
]
zTree
DL : 0
BinarySearchTree.lss Time-stamp: <2003- 28 01:56:10 Daniel Eriksson> Date Author Changes - 2003-03-28 Daniel Eriksson Created- BinarySearchTree.lss Time-stamp: <2003-03-28 01:56:10 Daniel Eriksson> Date Author Changes - 2003-03-28 Daniel Eriksson Created
Update
: 2025-02-19
Size
: 781kb
Publisher
:
hufu
[
Software Engineering
]
A-new-pedestrian-detection-method
DL : 0
基于HOG和LSS特征的行人检测算法, 具有参考意义-A new pedestrian detection method based on combined HOG and LSS features
Update
: 2025-02-19
Size
: 3.97mb
Publisher
:
zbh_wj
[
GPS develop
]
GPS_TEC
DL : 0
GPS位置转化为地理经纬度以及LSS谱分析。(The location of GPS is transformed into geographic latitude and longitude.)
Update
: 2025-02-19
Size
: 4kb
Publisher
:
LYWhu
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.