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

pre-authored

  • Open-source, free, multi-platform BASIC compiler, with syntax similar MS-QuickBASIC (including the G

    Open-source, free, multi-platform BASIC compiler, with syntax similar MS-QuickBASIC (including the GFX statements), that adds new features such as pointers, unsigned data types, inline assembly, a pre-processor and many others.

    标签: multi-platform MS-QuickBASIC Open-source including

    上传时间: 2017-05-06

    上传用户:cursor

  • This is a simple algorithm that downloads trading data from yahoo database. It is basically a large

    This is a simple algorithm that downloads trading data from yahoo database. It is basically a large scale application of sqq.m which was originally submitted by Michael Boldin, link at acknowledgements. Some of the functionalities of the package: - User defined ticker list. - Function for downloading most recent SP500 composition in ticker list. - Control for bad data (e.g. a certain percentage of prices missing). - Choice of frequency of data (e.g. weekly prices). - Choice of starting and ending data. - Function for saving the whole data in a pre-formatted excel file together with a full reports on missing data.

    标签: algorithm downloads basically database

    上传时间: 2017-06-03

    上传用户:啊飒飒大师的

  • This code proposes genetic algorithm (GA) to optimize the point-to-point trajectory planning for a 3

    This code proposes genetic algorithm (GA) to optimize the point-to-point trajectory planning for a 3-link robot arm. The objective function for the proposed GA is to minimizing traveling time and space, while not exceeding a maximum pre-defined torque, without collision with any obstacle in the robot workspace.

    标签: point-to-point trajectory algorithm proposes

    上传时间: 2013-12-21

    上传用户:chenxichenyue

  • Text mining tries to solve the crisis of information overload by combining techniques from data mini

    Text mining tries to solve the crisis of information overload by combining techniques from data mining, machine learning, natural language processing, information retrieval, and knowledge management. In addition to providing an in-depth examination of core text mining and link detection algorithms and operations, this book examines advanced pre-processing techniques, knowledge representation considerations, and visualization approaches. Finally, it explores current real-world, mission-critical applications of text mining and link detection in such varied fields as M&A business intelligence, genomics research and counter-terrorism activities.

    标签: information techniques combining overload

    上传时间: 2014-01-02

    上传用户:Late_Li

  • A AVR USB download tool. It can download your target file to full series avr chip with only one pre

    A AVR USB download tool. It can download your target file to full series avr chip with only one press.

    标签: download target series chip

    上传时间: 2014-12-05

    上传用户:fredguo

  • 主要操作过程: 建立一般的二叉链表

    主要操作过程: 建立一般的二叉链表,通过遍历进行线化,设p为当前处理结点,pre为p的前驱填标志: 若p无左:p->ltag=1;若p无右:p—>rtag=1;填线索:若p->ltag==1: p->lchild=pre 若pre->rtag== pre->rchild=p

    标签: 操作 过程

    上传时间: 2017-08-09

    上传用户:我们的船长

  • David Vernon is the Coordinator of the European Network for the Advancement of Artificial Cognitive

    David Vernon is the Coordinator of the European Network for the Advancement of Artificial Cognitive Systems and he is a Visiting Professor of Cognitive Systems at the University of Genoa. He is also a member of the management team of the RobotCub integrated working on the development of open-source cognitive humanoid robot. Over the past 27 years, he has held positions at Westinghouse Electric, Trinity College Dublin, the European Commission, the National University of Ireland Maynooth, Science Foundation Ireland, and Etisalat University College. He has authored two and edited three books on computer vision and has published over eighty papers in the fields of Computer Vision, Robotics, and Cognitive Systems. His research interests include Fourier-based computer vision and enactive approaches to cognition. He is currently a Professor at Etisalat University College in Sharjah-United Arab Emirates, focusing on Masters programs by research in Computing fields.".[1]

    标签: the Coordinator Advancement Artificial

    上传时间: 2014-01-08

    上传用户:netwolf

  • 指纹仪URU4000B

    Biokey200/URU4000B指纹仪驱动与SDK 升级到4000B注意事项 原使用Biokey SDK的客户,需要升级SDK开发包并安装4000B的驱动。 注意:安装4000B驱动前需卸载4000的驱动。 其步骤如下: 1、备份注册表:在开始菜单中的‘运行’中运行‘Regedit’,打开注册表,然后选中注册表中的 [HKEY_LOCAL_MACHINE\SOFTWARE\DigitalPersona]项,单击菜单上的注册表->导出注册表文件,将该项导出到文件中。 2、卸载4000的驱动程序(Biokey200/URU4000驱动)。 卸载步骤如下: 1)运行控制面板中的“添加/删除'程序”,卸载指纹采集设备的驱动程序; 2)在开始菜单中的‘运行’中运行‘Regedit’,查看 HKEY_LOCAL_MACHINE\Software\DigitalPersona键值,如果有则删除; 3)查看系统安装目录下system32 目录(win98为windows\system)下的DP*.dll ,如果有则全部删除; 4)察看Program files\zksoftware\biokey200目录,如果有则整个删除。 3、重新启动计算机,安装4000B驱动程序, 4、将Biokey SDK升级,用新的Biokey.ocx替换旧的控件,一般情况下,VB程序可以直接使用,Delphi程序则需要重新编译。 5、用4000B的驱动,必须使用新的控件,目前只完成了1:N的控件升级,1:1的控件,暂时使用原来3.5版本的控件。 6、测试原来登记的指纹模板,看是否能正常比对,如果不能,双击原来备份的注册表文件,添加到注册表中,就可以了。 原来使用U.R.U SDK的客户,需要更新驱动程序,同时由于U.R.U的模板有一些变化,所以需要一些改动,我们提供一份升级须知,请查看ReleaseNotes.txt.升级过程前三个步骤同上,只是需要注意,卸载的时候,查看Program files\DigitalPersona目录,如果有则整个删除。

    标签: 指纹仪URU4000B

    上传时间: 2015-03-30

    上传用户:12212

  • toj 4022源代码

    #include <iostream> using namespace std; int main(){ int t; cin>>t; while(t--){ long long n; cin>>n; if(n%2==1) cout<<(n*n-1)/4<<endl; else if (n%4==0) cout <<(n*n)/4-1<<endl; else{ if(n==2) cout<<1<<endl; else{ long long k=n/2-1; cout <<k*k+2*k-3<<endl; } } } return 0; }

    标签: 天津大学acm4022 代码

    上传时间: 2015-04-20

    上传用户:nr607

  • 做DSP之前我们该弄明白哪些基本问题

    以数字信号处理器(DSP)为核心的实时数字信号处理技术正在迅猛发展,各种类型的DSP分别适应了不同领域的应用要求。本书提供了初学者的入门指导

    标签: DSP 入门 指导 基本问题

    上传时间: 2015-06-01

    上传用户:Miracles