搜索结果
找到约 972 项符合
New-Rapshon 的查询结果
书籍 Fundamentals_of_Global_Positioning_System2
In this new edition of the book, only minor changes were made to the original
nine chapters but three new chapters treat topics of increasing interest to GPS
users and equipment developers. One topic, improving the GPS receiver sensi-
tivity may extend their operations into buildings, which is becom ...
书籍 Mobile+Information+Systems+Leveraging
Since OpenStreetMap (OSM) appeared more than ten years ago, new
collaborative mapping approaches have emerged in different areas and have become
important components of localised information and services based on localisation.
There is now increased awareness of the importance of the space-time attr ...
书籍 Feedback Control Theory
Striking developments have taken place since 1980 in feedback control theory. The subject has be-
come both more rigorous and more applicable. The rigor is not for its own sake, but rather that even
in an engineering discipline rigor can lead to clarity and to methodical solutions to problems. The
a ...
书籍 Intelligent Networked Teleoperation Control
This book describes a unifying framework to networked teleoperation systems
cutting across multiple research fields including networked control system for linear
and nonlinear forms, bilateral teleoperation, trilateral teleoperation, multilateral
teleoperation, cooperative teleoperation, and some te ...
书籍 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 ...
书籍 Artificial+Intelligence+in+Power+System
n recent years, there have been many books published on power system optimization.
Most of these books do not cover applications of artifi cial intelligence based methods.
Moreover, with the recent increase of artifi cial intelligence applications in various fi elds,
it is becoming a new trend in so ...
书籍 Auto-Machine-Learning-Methods-Systems-Challenges
The past decade has seen an explosion of machine learning research and appli-
cations; especially, deep learning methods have enabled key advances in many
applicationdomains,suchas computervision,speechprocessing,andgameplaying.
However, the performance of many machine learning methods is very sensi ...
书籍 Bishop-Pattern-Recognition-and-Machine-Learning
Pattern recognition has its origins in engineering, whereas machine learning grew
out of computer science. However, these activities can be viewed as two facets of
the same field, and together they have undergone substantial development over the
past ten years. In particular, Bayesian methods have g ...
书籍 Fundamentals+of+the+New+Artificial+Intelligence
The Industrial Revolution, which started in England around 1760, has replaced
human muscle power with the machine. Artificial intelligence (AI) aims at replacing
human intelligence with the machine. The work on artificial intelligence started in
the early 1950s, and the term itself was coined in 195 ...
源码 二叉树子系统
#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 ...