top

  Info

  • Utilizzare la checkbox di selezione a fianco di ciascun documento per attivare le funzionalità di stampa, invio email, download nei formati disponibili del (i) record.

  Info

  • Utilizzare questo link per rimuovere la selezione effettuata.
Engineering problem solving with c / / Delores M. Etter
Engineering problem solving with c / / Delores M. Etter
Autore Etter Delores M (Delores Maria), <1947->
Edizione [Fourth edition.]
Pubbl/distr/stampa Harlow, England : , : Pearson Education, Limited, , [2013]
Descrizione fisica 1 online resource (483 pages)
Disciplina 620.002855133
Collana Always learning
Soggetto topico C (Computer program language)
Engineering - Data processing
ISBN 0-273-77575-8
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto Cover -- Contents -- 1 Engineering Problem Solving -- Crime Scene Investigation -- 1.1 Engineering in the 21[sup(st)] Century -- Recent Engineering Achievements -- Changing Engineering Environment -- 1.2 Computing Systems: Hardware and Software -- Computer Hardware -- Computer Software -- Operating Systems -- Software Tools -- Computer Languages -- Executing a Computer Program -- Software Life Cycle -- 1.3 An Engineering Problem-Solving Methodology -- Summary -- Key Terms -- Problems -- 2 Simple C Programs -- Crime Scene Investigation: Forensic Anthropology -- 2.1 Program Structure -- 2.2 Constants and Variables -- Scientific Notation -- Numeric Data Types -- Character Data -- Symbolic Constants -- 2.3 Assignment Statements -- Arithmetic Operators -- Priority of Operators -- Overflow and Underflow -- Increment and Decrement Operators -- Abbreviated Assignment Operators -- 2.4 Standard Input and Output -- Printf Function -- Scanf Function -- 2.5 Problem Solving Applied: Estimating Height from Bone Lengths -- 2.6 Numerical Technique: Linear Interpolation -- 2.7 Problem Solving Applied: Freezing Temperature of Seawater -- 2.8 Mathematical Functions -- Elementary Math Functions -- Trigonometric Functions -- Hyperbolic Functions -- 2.9 Character Functions -- Character I/O -- Character Comparisons -- 2.10 Problem Solving Applied: Velocity Computation -- 2.11 System Limitations -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 3 Control Structures and Data Files -- Crime Scene Investigation: Face Recognition and Surveillance Video -- 3.1 Algorithm Development -- Top-Down Design -- Decomposition Outline -- Refinement with Pseudocode and Flowcharts -- Structured Programming -- Sequence -- Selection -- Repetition -- Evaluation of Alternative Solutions -- Error Conditions -- Generation of Test Data.
3.2 Conditional Expressions -- Relational Operators -- Logical Operators -- Precedence and Associativity -- 3.3 Selection Statements -- Simple if Statement -- If/else Statement -- Switch Statement -- 3.4 Problem Solving Applied: Face Recognition -- 3.5 Loop Structures -- While Loop -- Do/while Loop -- For Loop -- Break and continue Statements -- 3.6 Problem Solving Applied: Wave Interaction -- 3.7 Data Files -- I/O Statements -- Reading Data Files -- Specified Number of Records -- Trailer or Sentinel Signals -- End-of-File -- Generating a Data File -- 3.8 Numerical Technique: Linear Modeling* -- 3.9 Problem Solving Applied: Ozone Measurements* -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 4 Modular Programming with Functions -- Crime Scene Investigation: Iris Recognition -- 4.1 Modularity -- 4.2 Programmer-Defined Functions -- Function Example -- Function Definition -- Function Prototype -- Parameter List -- Storage Class and Scope -- 4.3 Problem Solving Applied: Computing the Boundaries of the Iris -- 4.4 Problem Solving Applied: Iceberg Tracking -- 4.5 Random Numbers -- Integer Sequences -- Floating-Point Sequences -- 4.6 Problem Solving Applied: Instrumentation Reliability -- 4.7 Numerical Technique: Roots of Polynomials* -- Polynomial Roots -- Incremental-Search Technique -- 4.8 Problem Solving Applied: System Stability* -- 4.9 Macros* -- 4.10 Recursion* -- Factorial Computation -- Fibonacci Sequence -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 5 Arrays and Matrices -- Crime Scene Investigation: Speech Analysis and Speech Recognition -- 5.1 One-Dimensional Arrays -- Definition and Initialization -- Computations and Output -- Function Arguments -- 5.2 Problem Solving Applied: Hurricane Categories -- 5.3 Problem Solving Applied: Molecular Weights.
5.4 Statistical Measurements -- Simple Analysis -- Maximum and Minimum -- Average -- Median -- Variance and Standard Deviation -- Custom Header File -- 5.5 Problem Solving Applied: Speech Signal Analysis -- 5.6 Sorting Algorithms -- 5.7 Search Algorithms -- Unordered List -- Ordered List -- 5.8 Two-Dimensional Arrays -- Definition and Initialization -- Computations and Output -- Function Arguments -- 5.9 Problem Solving Applied: Terrain Navigation -- 5.10 Matrices and Vectors* -- Dot Product -- Determinant -- Transpose -- Matrix Addition and Subtraction -- Matrix Multiplication -- 5.11 Numerical Technique: Solution to Simultaneous Equations* -- Graphical Interpretation -- Gauss Elimination -- 5.12 Problem Solving Applied: Electrical Circuit Analysis* -- 5.13 Higher Dimensional Arrays* -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 6 Programming with Pointers -- Crime Scene Investigation:DNA Analysis -- 6.1 Addresses and Pointers -- Address Operator -- Pointer Assignment -- Address Arithmetic -- 6.2 Pointers to Array Elements -- One-Dimensional Arrays -- Two-Dimensional Arrays -- 6.3 Problem Solving Applied: E1 Niño-Southern Oscillation Data -- 6.4 Pointers in Function References -- 6.5 Problem Solving Applied: Seismic Event Detection -- 6.6 Character Strings -- String Definition and I/O -- String Functions -- 6.7 Problem Solving Applied: DNA Sequencing -- 6.8 Dynamic Memory Allocation* -- 6.9 A Quicksort Algorithm* -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 7 Programming with Structures -- Crime Scene Investigation: Fingerprint Recognition -- 7.1 Structures -- Definition and Initialization -- Input and Output -- Computations -- 7.2 Using Functions with Structures -- Structures as Function Arguments -- Functions that Return Structures.
7.3 Problem Solving Applied: Fingerprint Analysis -- 7.4 Arrays of Structures -- 7.5 Problem Solving Applied: Tsunami Analysis -- 7.6 Dynamic Data Structures* -- Additional Dynamic Data Structures -- Circularly Linked List -- Doubly Linked List -- Stack -- Queue -- Binary Tree -- Summary -- Key Terms -- C Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- 8 An Introduction to C++ -- Crime Scene Investigation: Hand Recognition -- 8.1 Object-Oriented Programming -- 8.2 C++ Program Structure -- 8.3 Input and Output -- The cout Object -- Stream Functions -- The cin Object -- Defining File Streams -- 8.4 C++ Program Examples -- Simple Computations -- Loops -- Functions, One-Dimensional Arrays, and Data Files -- 8.5 Problem Solving Applied: Hand Recognition -- 8.6 Problem Solving Applied: Surface Wind Directions -- 8.7 Classes -- Defining a Class Data Type -- Constructor Functions -- Class Operators -- 8.8 Numerical Technique: Complex Roots -- Complex Class Definition -- Complex Roots for Quadratic Equations -- Summary -- Key Terms -- C++ Statement Summary -- Style: Notes -- Debugging Notes -- Problems -- Appendices -- A: ANSI C Standard Library -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- B: ASCII Character Codes -- C: Using MATLAB to Plot Data from Text Files -- Complete Solutions to Practice! Problems -- Selected Solutions to Modify! Problems -- Complete Solutions to End-of-Chapter Short-Answer Problems -- Selected Solutions to End-of-Chapter Programming Problems -- Glossary -- Index -- A -- B -- C -- D -- E -- F -- G -- H -- I -- J -- K -- L -- M -- N -- O -- P -- Q.
R -- S -- T -- U -- V -- W -- Z.
Record Nr. UNINA-9910150207003321
Etter Delores M (Delores Maria), <1947->  
Harlow, England : , : Pearson Education, Limited, , [2013]
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Engineering problem solving with C++ / / Delores M. Etter, Jeanine A. Ingber
Engineering problem solving with C++ / / Delores M. Etter, Jeanine A. Ingber
Autore Etter Delores M (Delores Maria), <1947->
Edizione [Third, International edition.]
Pubbl/distr/stampa Boston, Massachusetts : , : Pearson, , [2012]
Descrizione fisica 1 online resource (624 pages) : color illustrations, photographs
Disciplina 620.00285
Collana Always Learning
Soggetto topico Engineering - Data processing
ISBN 1-292-01407-5
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto Cover -- Contents -- Preface -- Chapter 1: Introduction to Computing and Engineering Problem Solving -- 1.1 Historical Perspective -- 1.2 Recent Engineering Achievements -- Changing Engineering Environment -- 1.3 Computing Systems -- Computer Hardware -- Computer Software -- 1.4 Data Representation and Storage -- Number Systems -- Data Types and Storage -- 1.5 An Engineering Problem-Solving Methodology -- Summary -- Chapter 2: Simple C++ Programs -- Engineering Challenge: Vehicle Performance -- 2.1 Program Structure -- 2.2 Constants and Variables -- Scientific Notation -- Numeric Data Types -- Boolean Data Type -- Character Data Type -- String Data -- Symbolic Constants -- 2.3 C++ Classes -- Class Declaration -- Class Implementation -- 2.4 C++ Operators -- Assignment Operator -- Arithmetic Operators -- Precedence of Operators -- Overflow and Underflow -- Increment and Decrement Operators -- Abbreviated Assignment Operators -- 2.5 Standard Input and Output -- The cout Object -- Stream Objects -- Manipulators -- The cin Object -- 2.6 Building C++ Solutions with IDEs: NetBeans -- NetBeans -- 2.7 Basic Functions Included in the C++ Standard Library -- Elementary Math Functions -- Trigonometric Functions -- Hyperbolic Functions -- Character Functions -- 2.8 Problem Solving Applied: Velocity Computation -- 2.9 System Limitations -- Summary -- Chapter 3: Control Structures: Selection -- Engineering Challenge: Global Change -- 3.1 Algorithm Development -- Top-Down Design -- 3.2 Structured Programming -- Pseudocode -- Evaluation of Alternative Solutions -- 3.3 Conditional Expressions -- Relational Operators -- Logical Operators -- Precedence and Associativity -- 3.4 Selection Statements: if Statement -- Simple if Statements -- if/else Statement -- 3.5 Numerical Technique: Linear Interpolation.
3.6 Problem Solving Applied: Freezing Temperature of Seawater -- 3.7 Selection Statements: switch Statement -- 3.8 Building C++ Solutions with IDEs: NetBeans -- NetBeans -- 3.9 Defining Operators for Programmer-Defined Data Types -- Summary -- Chapter 4: Control Structures: Repetition -- Engineering Challenge: Data Collection -- 4.1 Algorithm Development -- Pseudocode and Flowchart Description -- 4.2 Repetition Structures -- while Loop -- do/while Loop -- for Loop -- 4.3 Problem Solving Applied: GPS -- 4.4 break and continue Statements -- 4.5 Structuring Input Loops -- Counter-Controlled Loops -- Sentinel-Controlled Loop -- End-Of-Data Loop -- 4.6 Problem Solving Applied: Weather Balloons -- 4.7 Building C++ Solutions with IDEs: Microsoft Visual C++ -- Microsoft Visual C++ -- Summary -- Chapter 5: Working with Data Files -- Engineering Challenge: Weather Prediction -- 5.1 Defining File Streams -- Stream Class Hierarchy -- ifstream Class -- ofstream Class -- 5.2 Reading Data Files -- Specified Number of Records -- Trailer or Sentinel Signals -- End-of-File -- 5.3 Generating a Data File -- 5.4 Problem Solving Applied: Data Filters.Modifying an HTML File -- 5.5 Error Checking -- The Stream State -- 5.6 Numerical Technique: Linear Modeling -- 5.7 Problem Solving Applied: Ozone Measurements -- Summary -- Chapter 6: Modular Programming with Functions -- Engineering Challenge: Simulation -- 6.1 Modularity -- 6.2 Programmer-Defined Functions -- Function Definition -- Solution 1 -- Solution 2 -- Function Prototype -- 6.3 Parameter Passing -- Pass by Value -- Pass by Reference -- Storage Class and Scope -- 6.4 Problem Solving Applied: Calculating a Center of Gravity -- 6.5 Random Numbers -- Integer Sequences -- Floating-Point Sequences -- 6.6 Problem Solving Applied: Instrumentation Reliability -- 6.7 Defining Class Methods -- Public Interface.
Accessor Methods -- Mutator Methods -- 6.8 Problem Solving Applied: Design of Composite Materials -- Solution 1 -- Solution 2 -- 6.9 Numerical Technique: Roots of Polynomials -- Polynomial Roots -- Incremental-Search Technique -- 6.10 Problem Solving Applied: System Stability -- Newton-Raphson Method -- 6.11 Numerical Technique: Integration -- Integration Using the Trapezoidal Rule -- Summary -- Chapter 7: One-Dimensional Arrays -- Engineering Challenge: Tsunami Warning Systems -- 7.1 Arrays -- Definition and Initialization -- Pseudocode -- Computation and Output -- Function Arguments -- 7.2 Problem Solving Applied: Hurricane Categories -- 7.3 Statistical Measurements -- Simple Analysis -- Variance and Standard Deviation -- Custom Header Files -- 7.4 Problem Solving Applied: Speech Signal Analysis -- 7.5 Sorting and Searching Algorithms -- Selection Sort -- Search Algorithms -- Unordered Lists -- Ordered Lists -- 7.6 Problem Solving Applied: Tsunami Warning Systems -- 7.7 Character Strings -- C Style String Definition and I/O -- String Functions -- 7.8 The string Class -- 7.9 The vector class -- Parameter Passing -- 7.10 Problem Solving Applied: Calculating Probabilities -- Summary -- Chapter 8: Two-Dimensional Arrays -- Engineering Challenge: Terrain Navigation -- 8.1 Two-Dimensional Arrays -- Declaration and Initialization -- Computations and Output -- Function Arguments -- 8.2 Problem Solving Applied: Terrain Navigation -- 8.3 Two-Dimensional Arrays and the vector class -- Function Arguments -- 8.4 Matrices -- Determinant -- Transpose -- Matrix Addition and Subtraction -- Matrix Multiplication -- 8.5 Numerical Technique: Solution to Simultaneous Equations -- Graphical Interpretation -- Gauss Elimination -- 8.6 Problem Solving Applied: Electrical Circuit Analysis -- 8.7 Higher Dimensional Arrays -- Summary -- Chapter 9: An Introduction to Pointers.
Engineering Challenge: Weather Patterns -- 9.1 Addresses and Pointers -- Address Operator -- Pointer Assignment -- Pointer Arithmetic -- 9.2 Pointers to Array Elements -- One-Dimensional Arrays -- Character Strings -- Pointers as Function Arguments -- 9.3 Problem Solving Applied: El Nino-Southern Oscillation Data -- 9.4 Dynamic Memory Allocation -- The new Operator -- Dynamically Allocated Arrays -- The delete Operator -- 9.5 Problem Solving Applied: Seismic Event Detection -- 9.6 Common Errors Using new and delete -- 9.7 Linked Data Structures -- Linked Lists -- Stacks -- Queue -- 9.8 The C++ Standard Template Library -- The list class -- The stack class -- The queue class -- 9.9 Problem Solving Applied: Concordance of a Text File -- Summary -- Chapter 10: Advanced Topics -- Engineering Challenge: Artificial Intelligence -- 10.1 Generic Programming -- Function Templates -- 10.2 Data Abstraction -- Overloading Operators -- The Pixel class -- Arithmetic Operators -- friend Functions -- Validating Objects -- Bitwise Operators -- 10.3 Problem Solving Applied: Color Image Processing -- 10.4 Recursion -- Factorial Function -- Fibonacci Sequence -- The BinaryTree class -- 10.5 Class Templates -- 10.6 Inheritance -- The Rectangle class -- The Square class -- The Cube class -- 10.7 virtual Methods -- 10.8 Problem Solving Applied: Iterated Prisoner's Dilemma -- Summary -- Appendix A: C++ Standard Library -- Appendix B: ASCII Character Codes -- Appendix C: Using MATLAB to Plot Data from ASCII Files -- C++ Program to Generate a Data File -- ASCII Data File Generated by the C++ Program -- Generating a Plot with MATLAB -- Appendix D: References -- Appendix E: Practice! Solutions -- Index.
Record Nr. UNINA-9910153150603321
Etter Delores M (Delores Maria), <1947->  
Boston, Massachusetts : , : Pearson, , [2012]
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui
Introduction to MATLAB / / Delores Etter ; Global edition contributions by Anju Mishra
Introduction to MATLAB / / Delores Etter ; Global edition contributions by Anju Mishra
Autore Etter Delores M (Delores Maria), <1947->
Edizione [Third edition, Global edition.]
Pubbl/distr/stampa Hoboken : , : Pearson, , [2015]
Descrizione fisica 1 online resource (256 pages) : illustrations
Disciplina 620.001/51
ISBN 1-292-08012-4
Formato Materiale a stampa
Livello bibliografico Monografia
Lingua di pubblicazione eng
Nota di contenuto Cover -- Title -- Copyright -- Contents -- About This Book -- Acknowledgments -- 1 An Introduction to Engineering Problem Solving -- Engineering Achievements -- 1.1 Engineering Environment -- 1.2 Engineering Computing and MATLAB -- 1.3 An Engineering Problem-Solving Methodology -- 2 Getting Started with MATLAB -- Engineering Achievement: Wind Tunnels -- 2.1 Introduction to MATLAB and MATLAB Windows -- 2.2 Simple Operations -- 2.3 Output Options -- 2.4 Saving Your Work -- 3 MATLAB Functions -- Engineering Achievement: Weather Prediction -- 3.1 Introduction to Functions -- 3.2 Elementary Mathematical Functions -- 3.3 Trigonometric Functions -- 3.4 Data Analysis Functions -- 3.5 Random Number Generating Functions -- 3.6 User-Defined Functions -- 4 Plotting -- Engineering Achievement: Ocean Dynamics -- 4.1 x-y Plots -- 4.2 Three-Dimensional Plots -- 4.3 Editing Plots from the Figure Window -- 4.4 Creating Plots from the Workspace Window -- 5 Control Structures -- Engineering Achievement: Signal Processing -- 5.1 Relational and Logical Operators -- 5.2 Selection Structures -- 5.3 Loops -- 6 Matrix Computations -- Engineering Achievement: Manned Space Flight -- 6.1 Special Matrices -- 6.2 Matrix Operations and Functions -- 6.3 Solutions to Systems of Linear Equations -- 7 Symbolic Mathematics -- Engineering Achievement: Geolocation -- 7.1 Symbolic Algebra -- 7.2 Equation Solving -- 7.3 Differentiation and Integration -- 8 Numerical Techniques -- Engineering Achievement: Dynamic Fluid Flow -- 8.1 Interpolation -- 8.2 Curve Fitting: Linear and Polynomial Regression -- 8.3 Using the Interactive Fitting Tool -- 8.4 Numerical Integration -- 8.5 Numerical Differentiation -- Index -- Symbols.
Record Nr. UNINA-9910154768803321
Etter Delores M (Delores Maria), <1947->  
Hoboken : , : Pearson, , [2015]
Materiale a stampa
Lo trovi qui: Univ. Federico II
Opac: Controlla la disponibilità qui