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

Step

  • 这份源码由MapX5.02所附的C++源码改写而来。其独特之处在于

    这份源码由MapX5.02所附的C++源码改写而来。其独特之处在于,源码中还包含一份Step by Step 的开发文档。非常有助于初次在VC6下使用MapX开发GIS的入门者。

    标签: MapX 5.02 源码

    上传时间: 2013-12-08

    上传用户:youmo81

  • 其中包括西门子S7PLC的60个相关程序

    其中包括西门子S7PLC的60个相关程序,是用Step 7软件进行开发的,对初学者很有好处!

    标签: S7PLC 西门子 程序

    上传时间: 2013-12-11

    上传用户:13188549192

  • ISE 7.1使用教程

    ISE 7.1使用教程,对于初学者进行Step-by-Step的ISE7.1使用说明

    标签: ISE 7.1 使用教程

    上传时间: 2016-10-29

    上传用户:qw12

  • Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work

    Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work well with the C++ Standard Library. Boost libraries are intended to be widely useful, and usable across a broad spectrum of applications. The Boost license encourages both commercial and non-commercial use. We aim to establish "existing practice" and provide reference implementations so that Boost libraries are suitable for eventual standardization. Ten Boost libraries are already included in the C++ Standards Committee s Library Technical Report (TR1) as a Step toward becoming part of a future C++ Standard. More Boost libraries are proposed for the upcoming TR2. Boost works on almost any modern operating system, including UNIX and Windows variants. Follow the Getting Started Guide to download and install Boost. Popular Linux and Unix distributions such as Fedora, Debian, and NetBSD include pre-built Boost packages. Boost may also already be available on your organization s internal web server.

    标签: libraries peer-reviewed emphasize provides

    上传时间: 2016-12-05

    上传用户:semi1981

  • An adaptive fuzzy integral sliding mode controller for mismatched time-varying linear systems is p

    An adaptive fuzzy integral sliding mode controller for mismatched time-varying linear systems is presented in this paper. The proposed fuzzy integral sliding mode controller is designed to have zero steady state system error under Step inputs and alleviate the undesired chattering around the sliding surface

    标签: time-varying controller mismatched adaptive

    上传时间: 2014-12-04

    上传用户:luopoguixiong

  • These routines model tropospheric radiowave propagation over variable terrain and calculates propaga

    These routines model tropospheric radiowave propagation over variable terrain and calculates propagation loss vs. height and range. Propagation loss is displayed in dB contours on a height vs. range plot. TPEM is based on the split-Step Fourier PE method and was originally developed from an early PE model called PEPC, written by Fred Tappert. Propagation loss over variable terrain is modeled by shifting the field an appropriate number of bin widths correspondc ing to the height of the ground. The field is determined using the smooth earth PE method.

    标签: tropospheric propagation calculates radiowave

    上传时间: 2017-01-01

    上传用户:225588

  • symbian C++ 入门经典 初学者必读

    symbian C++ 入门经典 初学者必读,Step by Step 目录 1 概述 5 2 预备知识 5 3 Symbian OS Platform及应用开发5 3.1 内核和用户库.5 3.2 文件和目录5 3.3 目标平台及其变种6 3.4 Symbian OS的目标类型.6 4 应用开发工具包(SDKs)和工具7 4.1 SDK安装后的目录结构.7 4.1.1 根目录.7 4.1.2 Epoc32\.7 4.1.3 Epoc32Ex\8 4.2 应用构建工具.8 4.2.1 项目定义文件9 4.2.2 组件描述文件(bld.inf)9 4.2.3 bldmake命令9 5 渐进式指导10 5.1 控制台应用.10 5.2 基本源文件.10 5.3 构建应用.10 5.4 运行应用.11 6 深入研讨 13

    标签: symbian 初学者

    上传时间: 2014-01-19

    上传用户:yuanyuan123

  • Fully revised to cover the latest standards and technologies, XML and Java(TM), Second Edition provi

    Fully revised to cover the latest standards and technologies, XML and Java(TM), Second Edition provides the practical solutions developers need to design powerful and portable Web-based applications. Featuring Step-by-Step examples, this book focuses on harnessing the power of Java(TM) and XML together to streamline the development process. XML and Java(TM), Second Edition provides new coverage of emerging areas such as document management, databases, messaging, servlets, JDBC, data binding, security, and more. It begins with an overview of XML programming techniques, standard APIs, and tools. Building upon this foundation, the book goes on to cover the latest technologies, including DOM Level 2, SAX2, XSLT, SOAP, WSDL, and UDDI. It explores the role of these major middleware technologies in XML and Java-based Web application development, as well as the limitations and potential pitfalls.

    标签: technologies and standards Edition

    上传时间: 2014-01-05

    上传用户:hj_18

  • Overview If you have been wanting to learn Java, check out the newly revised fourth edition of the

    Overview If you have been wanting to learn Java, check out the newly revised fourth edition of the best-seller Sams Teach Yourself Programming with Java in 24 Hours. This Step-by-Step tutorial will teach you how to create simple Java programs and applets. Comprised of 24 one-hour lessons, this new edition focuses on key programming concepts and essential Java basics, has been improved by dozens of reader comments, and is reorganized to better cover the latest developments in Java. The book s coverage of core Java programming topics has also been expanded. A great starting point for learning Java, this book is also a great primer to reading sams Teach Yourself Java in 21 Days.

    标签: the Overview edition wanting

    上传时间: 2017-01-10

    上传用户:huyiming139

  • void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=

    void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } Step++ board[i][j]=Step if (Step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 Step-- }

    标签: int Knight printf board

    上传时间: 2014-01-17

    上传用户:cxl274287265