這份源碼由MapX5.02所附的C++源碼改寫而來。其獨特之處在于,源碼中還包含一份Step by Step 的開發文檔。非常有助于初次在VC6下使用MapX開發GIS的入門者。
上傳時間: 2013-12-08
上傳用戶:youmo81
其中包括西門子S7PLC的60個相關程序,是用Step 7軟件進行開發的,對初學者很有好處!
上傳時間: 2013-12-11
上傳用戶:13188549192
ISE 7.1使用教程,對于初學者進行Step-by-Step的ISE7.1使用說明
上傳時間: 2016-10-29
上傳用戶:qw12
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 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 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++ 入門經典 初學者必讀,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
上傳時間: 2014-01-19
上傳用戶:yuanyuan123
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 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 >= 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-- }
上傳時間: 2014-01-17
上傳用戶:cxl274287265