虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

ARRAY

  • 打开目录ads文件夹 找到top_ads.js文件 用记事本打开后就可以看到: -------------------------------------- var head_ads_tx

    打开目录ads文件夹 找到top_ads.js文件 用记事本打开后就可以看到: -------------------------------------- var head_ads_txt_num=4 var head_ads_txt_dim=new ARRAY(head_ads_txt_num) head_ads_txt_dim[1]="『丁香苑社区』 给您全新的体验!|" head_ads_txt_dim[2]="『丁香苑社区』 给您全新的2005 !|" head_ads_txt_dim[3]="『丁香苑社区』 给您全新的感受!|" head_ads_txt_dim[4]=" 欢迎您的到来!|"

    标签: head_ads_tx top_ads ads var

    上传时间: 2015-06-20

    上传用户:xmsmh

  • 1. PL/0 语言介绍 ●PL/0 程序设计语言是一个较简单的语言

    1. PL/0 语言介绍 ●PL/0 程序设计语言是一个较简单的语言,它以赋值语句为基础,构造概念有顺序、条件和重复(循环)三种。PL/0 有子程序概念,包括过程定义(可以嵌套)与调用且有局部变量说明。PL/0语言编译程序采用以语法分析为核心、一遍扫描的编译方法。词法分析和代码生成作为独立的子程序供语法分析程序调用。语法分析的同时,提供了出错报告和出错恢复的功能。在源程序没有错误编译通过的情况下,调用类PCODE解释程序解释执行生成的类PCODE代码。 ●保留字(关键字):所谓保留字是指在Pascal语言中具有特定的含义。标准Pascal语言中的保留字一共有35个,Turbo Pascal语言一共有51个。下面是Pascal语言的保留字:AND,ARRAY,BEGIN,CASE,CONST,DIV,DO,DOWNTO,ELSE,END,FILE,FOR,FUNTION,GOTO,IF,IN,LABEL,MOD,NIL,NOT,OF,OR,PACKED,PROCEDURE,PROGRAM,RECORD,REPEAT,SET,THEN,TO,TYPE,UNTIL,VAR,WHILE,WITH,EXPORTS,SHR,STRING,ASM,OBJECT,UNIT,CONSTRUCTOR,IMPLEMENTATION,DESTRUCTOR,USES,INHERITED,INLINE,INTERFACE,LIBRARY,XOR,SHL

    标签: PL 语言 程序设计语言

    上传时间: 2015-07-17

    上传用户:zm7516678

  • 关于FPGA流水线设计的论文 This work investigates the use of very deep pipelines for implementing circuits in

    关于FPGA流水线设计的论文 This work investigates the use of very deep pipelines for implementing circuits in FPGAs, where each pipeline stage is limited to a single FPGA logic element (LE). The architecture and VHDL design of a parameterized integer ARRAY multiplier is presented and also an IEEE 754 compliant 32-bit floating-point multiplier. We show how to write VHDL cells that implement such approach, and how the ARRAY multiplier architecture was adapted. Synthesis and simulation were performed for Altera Apex20KE devices, although the VHDL code should be portable to other devices. For this family, a 16 bit integer multiplier achieves a frequency of 266MHz, while the floating point unit reaches 235MHz, performing 235 MFLOPS in an FPGA. Additional cells are inserted to synchronize data, what imposes significant area penalties. This and other considerations to apply the technique in real designs are also addressed.

    标签: investigates implementing pipelines circuits

    上传时间: 2015-07-26

    上传用户:CHINA526

  • PIECEWISE_EVAL: evaluates a piecewise function of x usage: y = PIECEWISE_EVAL(x,breakpoints,funs)

    PIECEWISE_EVAL: evaluates a piecewise function of x usage: y = PIECEWISE_EVAL(x,breakpoints,funs) arguments (input) x - vector or ARRAY of points to evaluate though the function breakpoints - list of n breakpoints, -inf and +inf are implicitly

    标签: PIECEWISE_EVAL breakpoints evaluates piecewise

    上传时间: 2014-01-25

    上传用户:xyipie

  • LINEINTRGAL Line Integral in a 2D Vector Field. LINEINTRGAL(X,Y,U,V,C) computes the line integral a

    LINEINTRGAL Line Integral in a 2D Vector Field. LINEINTRGAL(X,Y,U,V,C) computes the line integral along the lines given in cell ARRAY C. X and Y define the coordinates of a rectangular grid over which U and V are defined. X and Y must be monotonic and 2D plaid as % produced by MESHGRID. X, Y, U, and V must all be the same size.

    标签: LINEINTRGAL Integral computes integral

    上传时间: 2014-01-13

    上传用户:hwl453472107

  • CCS编程环境 使用的是汇编加C的混合编程方法: The programme of the Correlation Algorithm. Using INT2 to get the input s

    CCS编程环境 使用的是汇编加C的混合编程方法: The programme of the Correlation Algorithm. Using INT2 to get the input signal. ARRAY x, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. ARRAY y, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. ARRAY cor is the Correlation result, the length is 255, 32-bit floating point.

    标签: Correlation Algorithm programme the

    上传时间: 2013-12-21

    上传用户:leixinzhuo

  • Input The input consists of two lines. The first line contains two integers n and k which are the l

    Input The input consists of two lines. The first line contains two integers n and k which are the lengths of the ARRAY and the sliding window. There are n integers in the second line. Output There are two lines in the output. The first line gives the minimum values in the window at each position, from left to right, respectively. The second line gives the maximum values. Sample Input 8 3 1 3 -1 -3 5 3 6 7 Sample Output -1 -3 -3 -3 3 3 3 3 5 5 6 7

    标签: The two consists contains

    上传时间: 2014-12-21

    上传用户:hongmo

  • 实现直接插入排序 要求:封装成一个函数

    实现直接插入排序 要求:封装成一个函数,形式如下:    void DirectInsertSort(bool bOrder, bool bPrintEveryStep, int * ARRAY) 其中,参数bOrder是布尔类型变量,true表示升序,false表示降序       bPrintEveryStep表示是否把每一步的排序结果打印出来,true表示打印,false表示不打印 ARRAY是待排序的数组

    标签: 排序 封装 函数

    上传时间: 2014-01-15

    上传用户:wsf950131

  • lms算法实现单波束形成

    lms算法实现单波束形成,线阵单波束形成,(linear ARRAY signal beamforming )

    标签: lms 算法 波束形成

    上传时间: 2015-11-19

    上传用户:skfreeman

  • C++, although a marvelous language, isn t perfect. Matthew Wilson has been working with it for over

    C++, although a marvelous language, isn t perfect. Matthew Wilson has been working with it for over a decade, and during that time he has found inherent limitations that require skillful workarounds. In this book, he doesn t just tell you what s wrong with C++, but offers practical techniques and tools for writing code that s more robust, flexible, efficient, and maintainable. He shows you how to tame C++ s complexity, cut through its vast ARRAY of paradigms, take back control over your code--and get far better results

    标签: marvelous although language Matthew

    上传时间: 2014-01-22

    上传用户:妄想演绎师