-
A major goal of this book is to show to make devices that are inherently reliable by design. While a lot of attention has been given to “quality improvement,” the majority of the emphasis has been placed on the processes that occur after the design of a product is complete. Design deficiencies are a significant problem, and can be exceedingly difficult to identify in the field. These types of quality problems can be addressed in the design phase with Relatively little effort, and with far less expense than will be incurred later in the process. Unfortunately, there are many hardware designers and organizations that, for various reasons, do not understand the significance and expense of an unreliable design. The design methodology presented in this text is intended to address this problem.
標(biāo)簽:
inherently
reliable
devices
design
上傳時間:
2016-07-30
上傳用戶:xiaodu1124
-
MATLAB的SVM算法實現(xiàn),Matlab Support Vector Machine Toolbox,This toolbox was designed as a teaching aid, which matlab is
particularly good for since source code is Relatively legible and
simple to modify. However, it is still reasonably fast if used
with the supplied optimiser. However, if you really want to speed
things up you should consider compiling the matrix composition
routine for H into a mex function. Then again if you really want
to speed things up you probably shouldn t be using matlab
anyway... Get hold of a dedicated C program once you understand
the algorithm.
標(biāo)簽:
MATLAB
SVM
算法
上傳時間:
2013-12-20
上傳用戶:jkhjkh1982
-
This toolbox was designed as a teaching aid, which matlab is
particularly good for since source code is Relatively legible and
simple to modify. However, it is still reasonably fast if used
with the supplied optimiser. However, if you really want to speed
things up you should consider compiling the matrix composition
routine for H into a mex function. Then again if you really want
to speed things up you probably shouldn t be using matlab
anyway... Get hold of a dedicated C program once you understand
the algorithm.
標(biāo)簽:
particularly
designed
teaching
toolbox
上傳時間:
2016-11-25
上傳用戶:hustfanenze
-
MySQL claims to be the world s most popular open source database, and with good
reason. It is free, runs on a wide variety of platforms, is Relatively simple, easy to
configure and performs well even under significant load. By comparison to some other
popular database management systems, configuring it is quite simple, but there are still a
sufficiently wide variety of security-relevant configuration issues to make securing it a
challenge.
標(biāo)簽:
database
popular
claims
source
上傳時間:
2016-12-13
上傳用戶:王者A
-
A novel met hod t o p artially compensate sigma2delta shap ed noise is p rop osed. By injecting t he comp en2
sation cur rent int o t he p assive loop f ilte r during t he delay time of t he p hase f requency detect or ( PFD) , a maximum
reduction of t he p hase noise by about 16dB can be achieved. Comp a red t o ot he r compensation met hods , t he tech2
nique p rop osed he re is Relatively simple and easy t o implement . Key building blocks f or realizing t he noise cancel2
lation , including t he delay va riable PFD and comp ensation cur rent source , a re sp ecially designed. Bot h t he behavior
level and circuit level simulation results a re p resented.
標(biāo)簽:
sigma2delta
compensate
injecting
artially
上傳時間:
2013-12-18
上傳用戶:qlpqlq
-
Essential Linux Device Drivers by Sreekrishnan Venkateswaran -------------------------------------------------------------------------------- Publisher: Prentice Hall Pub Date: March 27, 2008 Print ISBN-10: 0-13-239655-6 Print ISBN-13: 978-0-13-239655-4 Pages: 744 Slots: 0.5 而且kernel里面有的驅(qū)動基本都涉及到了 。比較新的書。 -Essential Linux Device Drivers by Sreekrishnan Venkateswaran Publisher: Prentice Hall Pub Date: March 27, 2008 Print ISBN-10: 0-13-239655-6 Print ISBN-13: 978-0-13-239655-4 Pages: 744 Slots: 0.5 inside the kernel and some basic drivers are involved. Relatively new book.(補全上次,上下半部).保證可用
標(biāo)簽:
Venkateswaran
Sreekrishnan
Essential
Drivers
上傳時間:
2014-01-19
上傳用戶:270189020
-
In the next generation of wireless communication systems, there will be a need for the rapid
deployment of independent mobile users. Significant examples include establishing survivable, efficient,
dynamic communication for emergency operations, disaster relief efforts, and military networks. Such
network scenarios cannot rely on centralized and organized connectivity, and can be conceived as
applications of mobile ad hoc networks. A MANET is an autonomous collection of mobile users that
communicate over Relatively bandwidth constrained wireless links. Since the nodes are mobile, the
network topology may change rapidly and unpredictably over time. The network is decentralized, where
all network activity including discovering the
標(biāo)簽:
communication
generation
the
wireless
上傳時間:
2014-01-07
上傳用戶:cuibaigao
-
In the next generation of wireless communication systems, there will be a need for the rapid
deployment of independent mobile users. Significant examples include establishing survivable, efficient,
dynamic communication for emergency operations, disaster relief efforts, and military networks. Such
network scenarios cannot rely on centralized and organized connectivity, and can be conceived as
applications of mobile ad hoc networks. A MANET is an autonomous collection of mobile users that
communicate over Relatively bandwidth constrained wireless links. Since the nodes are decentralized, where
all network activity including discovering the
標(biāo)簽:
communication
generation
the
wireless
上傳時間:
2014-01-04
上傳用戶:tedo811
-
SQL: A Beginner’s Guide is recommended for anyone trying to build a foundation in SQL
programming. The book is designed specifically for those who are new or Relatively new to SQL
however, those of you who need a refresher in SQL will also find this book beneficial.Whether
you’re an experienced programmer, have had some web development experience, are a database
administrator, or are new to programming and databases, SQL: A Beginner’s Guide provides a
strong foundation that will be useful to any of you wishing to learn more about SQL.
標(biāo)簽:
recommended
programming
foundation
SQL
上傳時間:
2013-12-24
上傳用戶:Amygdala
-
matlab有限元網(wǎng)格劃分程序
DistMesh is a simple MATLAB code for generation of unstructured triangular and tetrahedral meshes. It was developed by Per-Olof Persson (now at UC Berkeley) and Gilbert Strang in the Department of Mathematics at MIT. A detailed description of the program is provided in our SIAM Review paper, see documentation below.
One reason that the code is short and simple is that the geometries are specified by Signed Distance Functions. These give the shortest distance from any point in space to the boundary of the domain. The sign is negative inside the region and positive outside. A simple example is the unit circle in 2-D, which has the distance function d=r-1, where r is the distance from the origin. For more complicated geometries the distance function can be computed by interpolation between values on a grid, a common representation for level set methods.
For the actual mesh generation, DistMesh uses the Delaunay triangulation routine in MATLAB and tries to optimize the node locations by a force-based smoothing procedure. The topology is regularly updated by Delaunay. The boundary points are only allowed to move tangentially to the boundary by projections using the distance function. This iterative procedure typically results in very well-shaped meshes.
Our aim with this code is simplicity, so that everyone can understand the code and modify it according to their needs. The code is not entirely robust (that is, it might not terminate and return a well-shaped mesh), and it is Relatively slow. However, our current research shows that these issues can be resolved in an optimized C++ code, and we believe our simple MATLAB code is important for demonstration of the underlying principles.
To use the code, simply download it from below and run it from MATLAB. For a quick demonstration, type "meshdemo2d" or "meshdemond". For more details see the documentation.
標(biāo)簽:
matlab有限元網(wǎng)格劃分程序
上傳時間:
2015-08-12
上傳用戶:凜風(fēng)拂衣袖