搜索结果
找到约 613 项符合
main 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (47)
- 单片机编程 (45)
- 技术资料 (41)
- 微处理器开发 (35)
- 其他 (25)
- 书籍 (23)
- Java编程 (22)
- 源码 (22)
- Linux/Unix编程 (20)
- matlab例程 (18)
- 汇编语言 (17)
- 数学计算 (12)
- 嵌入式/单片机编程 (12)
- 编译器/解释器 (11)
- VC书籍 (11)
- 加密解密 (10)
- 数据结构 (10)
- 嵌入式Linux (9)
- DSP编程 (9)
- 其他嵌入式/单片机内容 (8)
- 系统设计方案 (8)
- 人工智能/神经网络 (8)
- uCOS (8)
- 文章/文档 (8)
- C/C++语言编程 (7)
- 其他书籍 (7)
- 网络 (6)
- 操作系统开发 (6)
- 数值算法/人工智能 (6)
- 通讯/手机编程 (5)
- 游戏 (5)
- 压缩解压 (5)
- 书籍源码 (5)
- VHDL/FPGA/Verilog (5)
- VIP专区 (5)
- 驱动编程 (4)
- Java书籍 (4)
- 软件设计/软件工程 (4)
- 其他行业 (4)
- 通讯编程文档 (4)
- 无线通信 (3)
- 串口编程 (3)
- J2ME (3)
- Windows CE (3)
- 文件格式 (3)
- 多国语言处理 (3)
- *行业应用 (3)
- 嵌入式综合 (3)
- 笔记 (3)
- 电源技术 (2)
- 通信网络 (2)
- 可编程逻辑 (2)
- 易语言编程 (2)
- 中间件编程 (2)
- STL (2)
- FlashMX/Flex源码 (2)
- 企业管理 (2)
- Applet (2)
- USB编程 (2)
- 电子书籍 (2)
- 医药行业 (2)
- Delphi控件源码 (2)
- 其他数据库 (2)
- Jsp/Servlet (2)
- 软件工程 (2)
- Internet/网络编程 (2)
- JavaScript (2)
- 邮电通讯系统 (2)
- Linux/uClinux/Unix编程 (2)
- 软件 (2)
- 习题答案 (2)
- 行业应用文档 (1)
- 学术论文 (1)
- 多媒体处理 (1)
- PCB相关 (1)
- 教程资料 (1)
- 开发工具 (1)
- 仿真技术 (1)
- VxWorks (1)
- GPS编程 (1)
- 电子政务应用 (1)
- 交通/航空行业 (1)
- SCSI/ASPI (1)
- 数据库系统 (1)
- MySQL数据库 (1)
- 3G开发 (1)
- 行业发展研究 (1)
- BREW编程 (1)
- 教育系统应用 (1)
- Symbian (1)
- 教材/考试/认证 (1)
- 论文 (1)
书籍 Advanced_Process_Engineering_Control
The present work, Advanced Process Engineering Control, is intended to be the
continuation of the authorsʼ Basic Process Engineering Control published by
DeGruyter in 2014. It presents the main and conventional type control loops in process
industries. Titles containing the concept of process engin ...
书籍 Linear_Matrix_Inequalities_in_System
The basic topic of this book is solving problems from system and control theory using
convex optimization. We show that a wide variety of problems arising in system
and control theory can be reduced to a handful of standard convex and quasiconvex
optimization problems that involve matrix inequalitie ...
书籍 Modern_Control_Theory
The main aim of this book is to present a unified, systematic description of
basic and advanced problems, methods and algorithms of the modern con-
trol theory considered as a foundation for the design of computer control
and management systems. The scope of the book differs considerably from
the to ...
书籍 Neural_and_Fuzzy_Logic_Control
The idea of writing this book arose from the need to investigate the main principles of
modern power electronic control strategies, using fuzzy logic and neural networks, for
research and teaching. Primarily, the book aims to be a quick learning guide for
postgraduate/undergraduate students or desig ...
书籍 Advances in Human Factors and System Interactions
Human Factors and Systems Interaction aims to address the main issues of concern
within systems interface with a particular emphasis on the system lifecycle
development and implementation of interfaces and the general implications of
virtual, augmented and mixed reality with respect to human and tec ...
书籍 Embeddings in Natural Language Processing
Artificial Intelligence (AI) has undoubtedly been one of the most important buz-
zwords over the past years. The goal in AI is to design algorithms that transform com-
puters into “intelligent” agents. By intelligence here we do not necessarily mean an
extraordinary level of smartness shown by sup ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...
源码 C++1000以内的素数
#include<iostream>
using namespace std;
int s=0;&nbsp;
int prime(int x){
int i,p=1;
for(i=2;i<=x/2;i++){
if(x%i==0){
p=0;
break;
}
}
if(p!=0){
cout<<x<< " ";
s++;
}
}&nbsp;
int main(){
for (int k=5;k<=100;k++){
prime(k);
if(s%5==0)
cout<<'\n';
}
return 0;
} ...
习题答案 轮机英语期末答案
)Armature
windings of the electric motor for NO.2 deck cargo winch found low insulation.
Windings re-winded,painted and baked dry.
(2) NO.1 main
air compressor failed to build up pressure.The machine disassembled, cleaned
and inspected. The discharge valve plate found broken. The valve palte r ...