Physics for Scientists and Engineers with Modern Physics (套書不分售) (10版)
其他會員也一起購買
書名:Physics for Scientists and Engineers with Modern Physics 10/e(套書不分售)
作者:Serway
出版社:Cengage
出版日期:2018/00/00
ISBN:9789579282147
原價:
1480
售價:
1406
現省:
74元
立即查看
Microelectronic Circuits (8版)
其他會員也一起購買
Microelectronic Circuits 8/e
+作者:Sedra/Smith
+年份:2021 年8 版
+ISBN:9780190853501
+書號:EE0490PC
+規格:平裝/套色
+頁數:1272
內容簡介
Microelectronic Circuits, Eighth Edition, is intended as a text for the core courses inelectronic circuits taught to majors in electrical and computer engineering. It shouldalso prove useful to engineers and other professionals wishing to update their knowledgethrough self-study.
As was the case with the first seven editions, the objective of this book is to develop inthe reader the ability to analyze and design electronic circuits, both analog and digital,discrete and integrated. While the application of integrated circuits is covered, emphasisis placed on transistor circuit design, This is done because of our belief that even if themajority of those studying this book were not to pursue a career in IC design, knowledgeof what is inside the IC package would enable intelligent and innovative application ofsuch chips. Furthermore, with the advances in VLSI technology and design methodology,IC design itself has become accessible to an increasing number of engineers.
目錄
PART I DEVICES AND BASIC CIRCUITS
1 Signals, Amplifiers, and Semiconductors
2 Operational Amplifiers
3 Diodes
4 Bipolar Junction Transistors (BJTs)
5 MOS Field-Effect Transistors (MOSFETs)
6 Transistor Amplifiers
PART II ANALOG INTEGRATED CIRCUITS
7 Building Blocks of Integrated-Circuit Amplifiers
8 Differential and Multistage Amplifiers
9 Frequency Response
10 Feedback
11 Output Stages and Power Amplifiers
12 Operational-Amplifier Circuits
13 Filters and Oscillators
PART Ill DIGITAL INTEGRATED CIRCUITS
14 CMOS Digital Logic Circuits
15 Digital Design: Power, Speed, and Area
16 Memory and Clocking Circuits
原價:
4200
售價:
3570
現省:
630元
立即查看
Essential Calculus Metric Version (Custom Solutions) (2版)
其他會員也一起購買
Essential Calculus Metric Version 2/e (Custom Solutions)
+作者:Stewart
+年份:2022 年2 版
+ISBN:9786269540648
+書號:MA0500PC
+規格:菊8開/平裝/彩色
+頁數:872
+出版商:聖智學習
目錄
1. FUNCTIONS AND LIMITS.
2. DERIVATIVES.
3. APPLICATION OF DIFFERENTIATION.
4. INTEGRALS.
5. APPLICATIONS OF INTEGRATION.
6. INVERSE FUNCTIONS: EXPONENTIAL, LOGARITHMIC, AND INVERSE TRIGONOMETRIC FUNCTIONS.
7. TECHNIQUES OF INTEGRATION.
8. FURTHER APPLICATIONS OF INTEGRATION.
9. PARAMETRIC EQUATIONS AND POLAR COORDINATES.
10. SEQUENCES, SERIES, AND POWER SERIES.
11. VECTOR AND THE GEOMETRY OF SPACE.
12. PARTIAL DERIVATIVES.
13. MULTIPLE INTEGRALS.
原價:
1320
售價:
1225
現省:
95元
立即查看
Callister's Materials Science and Engineering (10版)
其他會員也一起購買
原文書資訊
書名:Callister's Materials Science and Engineering 10/E 2020 <JW>
作者: CALLISTER
ISBN: 9781119453918
出版社: John Wiley
出版年: 2020年
中文書資訊
書名: 材料科學與工程導論 Materials Science and Engineering
作者: Callister/ 林景崎 林貞君 譯
ISBN: 9789863782810
出版社: 高立
出版年: 2021年
原價:
1660
售價:
1544
現省:
116元
立即查看
DATA ABSTRACTION & PROBLEM SOLVING WITH C++ - WALLS AND MIRRORS 6/E 20136/e (6版)
類似書籍推薦給您
書名:DATA ABSTRACTION & PROBLEM SOLVING WITH C++ -WALLS AND MIRRORS 6/E
作者:CARRANO
出版社:PEARSON
出版日期:2013/02/00
ISBN:9780273768418
內容簡介
This classic, best selling data structures text provides a firm foundation in data abstraction that emphasizes the distinction between specifications and implementation as the basis for an object-oriented approach. Software engineering principles and concepts as well as UML diagrams are used to enhance student understanding.
The sixth edition of Data Abstraction and Problem Solving with C++: Walls & Mirrors welcomes Associate Professor Timothy Henry of the University of Rhode Island as a co-author with Frank Carrano. The 6th edition is a significant revision of the previous edition with these goals:
- to place greater emphasis on data abstraction as a problem solving tool;
- to emphasize C++ as an implementation tool;
- to reduce the interdependency of chapters to allow more flexibility for instructors;
- to demonstrate safe and secure programming practices,
- to add VideoNotes
- to include a transition guide from Python to C++
目錄
Chapter 1 Data Abstraction: The Walls
1.1 Object-Oriented Concepts
1.1.1 Object-Oriented Analysis and Design
1.1.2 Aspects of an Object-Oriented Solution
1.2 Achieving a Better Solution
1.2.1 Cohesion
1.2.2 Coupling
1.3 Specifications
1.3.1 Operation Contracts
1.3.2 Unusual Conditions
1.3.3 Abstraction
1.3.4 Information Hiding
1.3.5 Minimal and Complete Interfaces
1.4 Abstract Data Types
1.4.1 Designing an ADT
1.4.2 ADTs that suggest other ADTs
1.5 The ADT Bag
1.5.1 Identifying Behaviors
1.5.2 Specifying Data and Operations
1.5.3 An Interface Template for the ADT
1.5.4 Using the ADT Bag
C++ Interlude 1 C++ Classes
C1.1 A Problem to Solve
C1.1.1 Private Data Fields
C1.1.2 Constructors and Destructor
C1.1.3 Methods
C1.1.4 Preventing Compiler Errors
C1.2 Implementing a Solution
C1.3 Templates
C1.4 Inheritance
C1.4.1 Base Classes and Derived Classes
C1.4.2 Overriding Base Class Methods
C1.5 Virtual Methods and Abstract Classes
C1.5.1 Virtual Methods
C1.5.2 Abstract Classes
Chapter 2 Recursion: The Mirrors
2.1 Recursive Solutions
2.2 Recursion That Returns a Value
2.2.1 A Recursive Valued Function: The Factorial of n
2.2.2 The Box Trace
2.3 Recursion That Performs an Action
2.3.1 A Recursive void Function: Writing a String Backward
2.4 Recursion with Arrays
2.4.1 Writing an Array’s Entries in Backward Order
2.4.2 The Binary Search
2.4.3 Finding the Largest Value in an Array
2.4.4 Finding the kth Smallest Value of an Array
2.5 Organizing Data
2.5.1The Towers of Hanoi
2.6 More Examples
2.6.1 The Fibonacci Sequence (Multiplying Rabbits)
2.6.2 Organizing a Parade
2.6.3 Choosing k Out of n Things
2.7 Recursion and Efficiency
Chapter 3 Array-Based Implementations
3.1 The Approach
3.1.1 Core Methods
3.1.2 Using Fixed-Size Arrays
3.2 An Array-Based Implementation of the ADT Bag
3.2.1 The Header File
3.2.2 Defining the Core Methods
3.2.3 Testing the Core Methods
...
原價:
1320
售價:
1254
現省:
66元
立即查看
Engineering Problem Solving with C 4/E 2013 (PH) (4版)
類似書籍推薦給您
立即查看
PROBLEM SOLVING WITH C++ 7/E 2009 <PH> 0-321-53134-5 (7版)
類似書籍推薦給您
原價:
1250
售價:
750
現省:
500元
立即查看
(特價書 85折) Engineering Problem Solving with C++ 2/E 200 8<PH>0-13-601175-6 (2版)
類似書籍推薦給您
原價:
1200
售價:
1020
現省:
180元
立即查看
電子書 Group Theory in Solid State Physics and Photonics: Problem Solving with Mathematica Hergert 9783527411337 2018 <JW>
類似書籍推薦給您
立即查看