/* 下面这些S11-S44实际上是一个4*4的矩阵,在原始的C实现中是用#define 实现的, 这里把它们实现成为STATIC final是表示了只读,切能在同一个进程空间内的多个
上传时间: 2016-10-08
上传用户:zwei41
非线性有限元程序,NONSAP is a general finite element program for the nonlinear STATIC and dynamic analysis of complex structures. The program is very flexible and was designed to be extended and modified by the user. In particular the program can easily be modified to use a different formulation of the equations of motions, different time integration operators and other additional options.
上传时间: 2016-11-12
上传用户:hopy
This demo shows the BER performance of linear, decision feedback (DFE), and maximum likelihood sequence estimation (MLSE) equalizers when operating in a STATIC channel with a deep null. The MLSE equalizer is invoked first with perfect channel knowledge, then with an imperfect, although straightforward, channel estimation algorithm. The BER results are determined through Monte Carlo simulation. The demo shows how to use these equalizers seamlessly across multiple blocks of data, where equalizer state must be maintained between data blocks.
标签: performance likelihood decision feedback
上传时间: 2013-11-25
上传用户:1079836864
这是专门为 C# 开发者定制的 ZC030X 编程接口。C# 开发者可以如下方式进行调用: 首先需要进行声明: ... using System.Runtime.InteropServices public class win32{ [DllImport("zc030xlib.dll", EntryPoint = "capInitCamera")] public STATIC extern int capInitCamera() }
标签: InteropServices Runtime System using
上传时间: 2016-11-28
上传用户:love_stanford
sqlite的帮助文档, This ZIP archive contains most of the STATIC HTML files that comprise this website, including all of the SQL Syntax and the C/C++ interface specs and other miscellaneous documentation.
上传时间: 2013-12-23
上传用户:evil
#include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" STATIC char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==NULL) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }
上传时间: 2016-12-31
上传用户:colinal
SCJP考试简介 ● 考试方式 全英文试题,以电脑作答,在授权的Prometric考试中心参加考试 考试编号:310-025 先决条件:无 考试题型:复选、填空和拖拽匹配 题量:59 及格标准:61% 时限:120分钟 费用:1250元 ● 要求具备的能力 ● 使用Java编程语言创建Java应用程序和applets。 ● 定义和描述垃圾搜集,安全性和Java虚拟机(JVM)。 ● 描述和使用Java语言面向对象的特点。 ● 开发图形用户界面(GUI)。利用Java支持的多种布局管理。 ● 描述和使用Java的事件处理模式。 ● 使用Java语言的鼠标输入、文本、窗口和菜单窗口部件。 ● 使用Java的例外处理来控制程序执行和定义用户自己的例外事件。 ● 使用Java语言先进的面向对象特点, 包括方法重载、方法覆盖、抽象类、接口、final、STATIC和访问控制。 ● 实现文件的输入/输出 (I/O)。 ● 使用Java语言内在的线程模式来控制多线程。 ● 使用Java 的Sockets机制进行网络通信。
上传时间: 2013-12-17
上传用户:kelimu
中软国际Java程序员笔试题 1.谈谈final, finally, finalize的区别。 2.Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)? 3.STATIC Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。
标签: Anonymous finalize extends finally
上传时间: 2013-12-21
上传用户:离殇
C语言嵌入式系统编程修炼(键盘操作).mht Keil C51与标准C比较.mht Keil C51下快速小数运算算法.mht 用C51实现PID算法.mht C51指针类型和存储区的关系详解.mht C语言指针学习.mht C语言测试:嵌入式程序员必须知道的16个问题.htm C51编程技巧-从单片机指针说到黑客程序.htm 单片机C51编程规范.mht 实用C51编程的高级技巧(C51编程).htm C51编程技巧.CHM 全局变量,局部变量,函数被STATIC修饰后.txt 文件目录表绘制.cmd 文件夹目录.txt 文件名目录.txt
上传时间: 2014-01-25
上传用户:linlin
实验 1 对象的创建和使用 ( l )理解类的定义; ( 2 )掌握对象的声明; ( 3 )学会使用构造函数初始化对象; ( 4 )使用类的数据和方法。 实验 2 类的静态成员与实例成员 ( l )掌握静态成员与实例成员的区别; ( 2 )学会使用类的静态成员。 实验 3 变量的作用域和 this 关键字 ( l )理解变量的作用域; ( 2 )掌握成员变量,局部变量和块变量的区别; ( 3 )学会使用 this 关键字。 实验 4 方法重载 ( l )理解方法重载的含义。 ( 2 )学会使用方法重载。 实验 5 子类的派生与方法覆盖 ( l )理解子类派生的概念; ( 2 )学习创建子类对象; ( 3 )掌握方法覆盖的使用。 实验 6 多态性与动态绑定 ( l )掌握多态性在继承中的运用; ( 2 )理解动态绑定的含义; ( 3 )学会使用抽象类; ( 4 )了解成员变量的隐藏。 实验 7 嵌套类和内部类 ( l )理解嵌套类和内部类的概念; ( 2 )学习使用内部类; ( 3 )掌握 STATIC 嵌套类的用法限制: ( 4 )了解局部类的用法。
上传时间: 2017-01-31
上传用户:wys0120