亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Main

  • Line+Loss+Analysis

    It has been over a decade since the Chinese publication of Line Loss in Electric Power Systems. To keep pace with technological developments, I started a revision as early as 2002, following the Main principles that the theoretical framework and characteristics of the first edition should be retained, with new contents added according to new problems after the reform of electric power systems and the new requirements for line loss management practices and in combination with practical experience.

    標簽: Analysis Line Loss

    上傳時間: 2020-06-07

    上傳用戶:shancjb

  • Wireless Identification

    We are in the era of ubiquitous computing in which the use and development of Radio Frequency Iden- tification (RFID) is becoming more widespread. RFID systems have three Main components: readers, tags, and database. An RFID tag is composed of a small microchip, limited logical functionality, and an antenna. Most common tags are passive and harvest energy from a nearby RFID reader. This energy is used both to energize the chip and send the answer back to the reader request. The tag provides a unique identifier (or an anonymized version of that), which allows the unequivocal identification of the tag holder (i.e. person, animal, or items).

    標簽: Identification Wireless

    上傳時間: 2020-06-08

    上傳用戶:shancjb

  • Digital Satellite Navigation and Geophysics

    This book is about global navigation satellite systems (GNSS), their two Main instru- ments, which are a receiver and a simulator, and their applications. The book is based on an operational off-the-shelf real-time software GNSS receiver and off-the-shelf GNSS signalsimulator.Theacademicversionsofthesetoolsarebundledwiththisbookandfree for readers to use for study and research.

    標簽: Navigation Geophysics Satellite Digital and

    上傳時間: 2020-06-09

    上傳用戶:shancjb

  • 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 engineering were deliberately chosen to suggest the inclusion, within the same approach, of processes other than the traditional ones. These come from outside the traditional fields of chemistry and petrochemistry: the sphere of pharmaceuticals, wastewater management, water puri- fication, water reserve management, construction material industry, food processing, household or automotive industries.

    標簽: Advanced_Process_Engineering_Cont rol

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 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 inequalities. For a few special cases there are “analytic solutions” to these problems, but our Main point is that they can be solved numerically in all cases. These standard problems can be solved in polynomial- time (by, e.g., the ellipsoid algorithm of Shor, Nemirovskii, and Yudin), and so are tractable, at least in a theoretical sense. Recently developed interior-point methods for these standard problems have been found to be extremely efficient in practice. Therefore, we consider the original problems from system and control theory as solved.

    標簽: Linear_Matrix_Inequalities_in_Sys tem

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 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 topics of classical traditional control theory Mainly oriented to the needs of automatic control of technical devices and technological proc- esses. Taking into account a variety of new applications, the book presents a compact and uniform description containing traditional analysis and op- timization problems for control systems as well as control problems with non-probabilistic models of uncertainty, problems of learning, intelligent, knowledge-based and operation systems – important for applications in the control of manufacturing processes, in the project management and in the control of computer systems.

    標簽: Modern_Control_Theory

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 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 design engineers interested in learning the fundamentals of modern control of drives and power systems in conjunction with the powerful design methodology based on VHDL.

    標簽: Neural_and_Fuzzy_Logic_Control

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 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 technology interaction. Human Factors and Systems Interaction is, in the first instance, affected by the forces shaping the nature offuture computing and systems development

    標簽: Interactions Advances Factors System Human and in

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 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 superhuman; it rather often involves very basic problems that humans solve very frequently in their day-to-day life. This can be as simple as recognizing faces in an image, driving a car, playing a board game, or reading (and understanding) an article in a newspaper. The intelligent behaviour ex- hibited by humans when “reading” is one of the Main goals for a subfield of AI called Natural Language Processing (NLP). Natural language 1 is one of the most complex tools used by humans for a wide range of reasons, for instance to communicate with others, to express thoughts, feelings and ideas, to ask questions, or to give instruc- tions. Therefore, it is crucial for computers to possess the ability to use the same tool in order to effectively interact with humans.

    標簽: Embeddings Processing Language Natural in

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 二叉樹子系統

    #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 ch1,ch2,a; ch1='y'; while(ch1=='y'||ch1=='y') { printf("\n"); printf("\n\t\t             二叉樹子系統"); printf("\n\t\t*****************************************"); printf("\n\t\t           1---------建二叉樹            "); printf("\n\t\t           2---------先序遍歷            "); printf("\n\t\t           3---------中序遍歷            "); printf("\n\t\t           4---------后序遍歷            "); printf("\n\t\t           5---------求葉子數            "); printf("\n\t\t           6---------求結點數            "); printf("\n\t\t           7---------求樹深度            "); printf("\n\t\t           0---------返    回            "); printf("\n\t\t*****************************************"); printf("\n\t\t      請選擇菜單號 (0--7)"); scanf("%c",&ch2); getchar(); printf("\n"); switch(ch2) { case'1': printf("\n\t\t請按先序序列輸入二叉樹的結點:\n"); printf("\n\t\t說明:輸入結點(‘0’代表后繼結點為空)后按回車。\n"); printf("\n\t\t請輸入根結點:"); T=CreateTree(); printf("\n\t\t二叉樹成功建立!\n");break; case'2': printf("\n\t\t該二叉樹的先序遍歷序列為:"); Preorder(T);break; case'3': printf("\n\t\t該二叉樹的中序遍歷序列為:"); Inorder(T);break; case'4': printf("\n\t\t該二叉樹的后序遍歷序列為:"); Postorder(T);break; case'5': count=0;Leafnum(T); printf("\n\t\t該二叉樹有%d個葉子。\n",count);break; case'6': count=0;Nodenum(T); printf("\n\t\t該二叉樹總共有%d個結點。\n",count);break; case'7': printf("\n\t\t該樹的深度為:%d",TreeDepth(T)); break; case'0': ch1='n';break; default: printf("\n\t\t***請注意:輸入有誤!***"); } if(ch2!='0') { printf("\n\n\t\t按【Enter】鍵繼續,按任意鍵返回主菜單!\n"); a=getchar(); if(a!='\xA') { getchar(); ch1='n'; } } } } BT *CreateTree() { BT *t; char x; scanf("%c",&x); getchar(); if(x=='0') t=NULL; else { t=new BT; t->data=x; printf("\n\t\t請輸入%c結點的左子結點:",t->data);         t->lchild=CreateTree(); printf("\n\t\t請輸入%c結點的右子結點:",t->data);         t->rchild=CreateTree();     } return t; } void Preorder(BT *T) { if(T) { printf("%3c",T->data); Preorder(T->lchild); Preorder(T->rchild); } } void Inorder(BT *T) { if(T) { Inorder(T->lchild); printf("%3c",T->data); Inorder(T->rchild); } } void Postorder(BT *T) { if(T) { Postorder(T->lchild); Postorder(T->rchild); printf("%3c",T->data); } } void Leafnum(BT *T) { if(T) { if(T->lchild==NULL&&T->rchild==NULL) count++; Leafnum(T->lchild); Leafnum(T->rchild); } } void Nodenum(BT *T) { if(T) { count++; Nodenum(T->lchild); Nodenum(T->rchild); } } int TreeDepth(BT *T) { int ldep,rdep; if(T==NULL) return 0; else { ldep=TreeDepth(T->lchild); rdep=TreeDepth(T->rchild); if(ldep>rdep) return ldep+1; else return rdep+1; } }

    標簽: 二叉樹 子系統

    上傳時間: 2020-06-11

    上傳用戶:ccccy

主站蜘蛛池模板: 隆回县| 沁源县| 济宁市| 阜新市| 谷城县| 嘉定区| 前郭尔| 呼玛县| 东安县| 盐津县| 北安市| 施秉县| 秦皇岛市| 苍南县| 荥经县| 泌阳县| 万宁市| 板桥市| 桃园市| 淮滨县| 利川市| 鸡西市| 天台县| 个旧市| 余庆县| 和静县| 青海省| 枣阳市| 托克逊县| 雷山县| 全州县| 松桃| 拉孜县| 三河市| 曲阳县| 稷山县| 屏东市| 朝阳区| 昌江| 博乐市| 吉木萨尔县|