搜索结果
找到约 240 项符合
step 的查询结果
按分类筛选
- 全部分类
- 技术资料 (27)
- 其他书籍 (19)
- matlab例程 (19)
- 电源技术 (15)
- 其他 (12)
- 单片机编程 (10)
- 电子书籍 (8)
- 单片机开发 (7)
- VC书籍 (6)
- 文件格式 (6)
- Linux/Unix编程 (6)
- 行业应用文档 (5)
- 软件工程 (5)
- Java编程 (5)
- 文章/文档 (5)
- 嵌入式综合 (4)
- 数据结构 (4)
- 数值算法/人工智能 (4)
- Java书籍 (4)
- 嵌入式/单片机编程 (4)
- VIP专区 (4)
- 模拟电子 (3)
- 编译器/解释器 (3)
- 游戏 (3)
- 书籍 (3)
- 可编程逻辑 (2)
- 源码/资料 (2)
- USB编程 (2)
- 人工智能/神经网络 (2)
- 其他嵌入式/单片机内容 (2)
- 软件设计/软件工程 (2)
- 并行计算 (2)
- 其他行业 (2)
- J2ME (2)
- 数学计算 (2)
- 工业控制 (1)
- PCB相关 (1)
- autocad教程 (1)
- 无线通信 (1)
- 开关电源 (1)
- 技术书籍 (1)
- 开发工具 (1)
- 实用工具 (1)
- 工控技术 (1)
- 压缩解压 (1)
- BREW编程 (1)
- Windows CE (1)
- 汇编语言 (1)
- DSP编程 (1)
- Modem编程 (1)
- 通讯编程文档 (1)
- 操作系统开发 (1)
- *行业应用 (1)
- VxWorks (1)
- 微处理器开发 (1)
- Symbian (1)
- 技术管理 (1)
- 书籍源码 (1)
- MySQL数据库 (1)
- 通讯/手机编程 (1)
- 系统设计方案 (1)
- 自动化控制 (1)
- 手册 (1)
- 源码 (1)
*行业应用 这份源码由MapX5.02所附的C++源码改写而来。其独特之处在于
这份源码由MapX5.02所附的C++源码改写而来。其独特之处在于,源码中还包含一份Step by Step 的开发文档。非常有助于初次在VC6下使用MapX开发GIS的入门者。
其他书籍 其中包括西门子S7PLC的60个相关程序
其中包括西门子S7PLC的60个相关程序,是用Step 7软件进行开发的,对初学者很有好处!
其他书籍 ISE 7.1使用教程
ISE 7.1使用教程,对于初学者进行step-by-step的ISE7.1使用说明
Linux/Unix编程 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 ...
文件格式 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 ...
其他 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 ...
Symbian 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 ...
其他书籍 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 toget ...
Java书籍 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 e ...
数据结构 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 ...