搜索结果

找到约 613 项符合 main 的查询结果

按分类筛选

显示更多分类

书籍 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 ...
https://www.eeworm.com/dl/522446.html
下载: 1
查看: 31

书籍 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 ...
https://www.eeworm.com/dl/522464.html
下载: 1
查看: 64

书籍 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 ...
https://www.eeworm.com/dl/522465.html
下载: 1
查看: 54

书籍 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 ...
https://www.eeworm.com/dl/522468.html
下载: 1
查看: 92

书籍 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 ...
https://www.eeworm.com/dl/522485.html
下载: 1
查看: 52

书籍 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 ...
https://www.eeworm.com/dl/522503.html
下载: 1
查看: 131

源码 二叉树子系统

#include<stdio.h> #define TREEMAX 100 typedef struct  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 ...
https://www.eeworm.com/dl/522520.html
查看: 93

源码 数组子系统

#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, ...
https://www.eeworm.com/dl/522521.html
下载: 1
查看: 81

源码 C++1000以内的素数

#include<iostream> using namespace std; int s=0;  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++; } }  int main(){ for (int k=5;k<=100;k++){ prime(k); if(s%5==0) cout<<'\n'; } return 0; } ...
https://www.eeworm.com/dl/522666.html
查看: 59

习题答案 轮机英语期末答案

)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 ...
https://www.eeworm.com/dl/522742.html
下载: 1
查看: 43