Request for consultation

Thanks for your request. You’ll soon be chatting with a consultant to get the answers you need.
Your form is submitting...
{{formPostErrorMessage.message}} [{{formPostErrorMessage.code}}]
Email Address is required. 'Email Address' must contain at least 0 characters 'Email Address' cannot exceed 0 characters Please enter a valid Email Address
First Name is required. 'First Name' must contain at least 0 characters 'First Name' cannot exceed 0 characters Please enter a valid First Name
Last Name is required. 'Last Name' must contain at least 0 characters 'Last Name' cannot exceed 0 characters Please enter a valid Last Name
Institution is required.
Discipline is required.
Country is required. 'Country' must contain at least 0 characters 'Country' cannot exceed 0 characters Please enter a valid Country
Cengage, at your service! How can we best meet your needs? is required.
Why are you contacting us today? is required. 'Why are you contacting us today?' must contain at least 0 characters 'Why are you contacting us today?' cannot exceed 0 characters Please enter a valid Why are you contacting us today?

MATLAB Programming for Engineers, 7th Edition

Stephen J. Chapman

  • {{checkPublicationMessage('Published', '2024-05-16T00:00:00+0000')}}
Starting At £36.00 See pricing and ISBN options
MATLAB Programming for Engineers 7th Edition by Stephen J. Chapman

Overview

Chapman's MATLAB® PROGRAMMING FOR ENGINEERS, 7th Edition, presents MATLAB® as a technical programming language while emphasizing problem-solving skills. Students learn to write clean, efficient and well-documented programs and understand practical functions of MATLAB®. The text reflects advancements in MATLAB® R2022b, including major language changes.

The first nine chapters serve as a complete text and resource for first-year engineering students' introduction to programming and problem-solving course. The remaining chapters cover advanced topics such as I/O, object-oriented programming and Graphical User Interfaces. These chapters provide an ongoing, trusted reference tool for upper-level engineering students or practicing engineers who rely upon MATLAB®.

Stephen J. Chapman

Stephen J. Chapman received a B.S. in Electrical Engineering from Louisiana State University and an M.S.E. in Electrical Engineering from the University of Central Florida. He pursued further graduate studies at Rice University. Mr. Chapman has served as an officer in the U.S. Navy, assigned to teach Electrical Engineering at the U.S. Naval Nuclear Power School in Orlando, Florida. He was also affiliated with the University of Houston, where he ran the power systems program in the College of Technology. In addition, he has served as a member of the technical staff of the Massachusetts Institute of Technology’s Lincoln Laboratory, both at the main facility in Lexington, Massachusetts, and at the field site on Kwajalein Atoll in the Republic of the Marshall Islands. While there, he did research in radar signal processing systems. He ultimately became the leader of four large operational range instrumentation radars at the Kwajalein field site (TRADEX, ALTAIR, ALCOR and MMW). Mr. Chapman also served as a research engineer at Shell Development Company in Houston, Texas, where he conducted seismic signal processing research. In addition, he was affiliated with the University of Houston, where he continued to teach on a part-time basis. Mr. Chapman is currently Manager of Systems Modeling and Operational Analysis for BAE Systems Australia in Melbourne, Australia. He is the subject matter expert of a team that has developed a model of how naval ships defend themselves. This model contains more than 400,000 lines of MATLAB code written over more than a decade. Mr. Chapman is a Senior Member of the Institute of Electrical and Electronic Engineers (and several of its component societies). He is also a Fellow of Engineers Australia.
  • REFLECTS RECENT MATLAB® UPDATES. All content in this edition corresponds to MATLAB® R2022b, released September 2022. (Note that the MATLAB language itself changed very little between R2022b and R2023b, so this text remains current for the language as of R2023b.)
  • TIMELY CONTENT HIGHLIGHTS THE MATLAB® GUI APPS. Students study MATLAB® GUI apps and learn the concepts common to all GUI programming in any language (callbacks, listeners, events, event handlers, etc.) in the process of studying the specific MATLAB® implementation.
  • ADDITIONAL APPLICATIONS AND END-OF-CHAPTER EXERCISES PROVIDE FURTHER OPPORTUNITIES TO APPLY CONCEPTS. Students find numerous and varied options for practicing skills with the contemporary applications, exercises and problems throughout this edition. The problems typically start with a simple example in the text created to illustrate some feature of the language, followed by the built-in MATLAB® functions that solve a much more comprehensive set of problems in the same area.
  • EQUIVALENTS REPLACE COVERAGE OF MANY OLDER MATLAB® FEATURES. MathWorks recommends the use of strings over character arrays almost everywhere, which is reflected throughout this edition.
  • STEP-BY-STEP PRESENTATIONS HELP READERS MAXIMIZE EFFECTIVE USE OF MATLAB®. The author effectively covers the use of functions to decompose tasks into smaller subtasks, data hiding and unit testing. Readers learn how to avoid common mistakes as well as maximize the tools and techniques available through MATLAB®.
  • TIMELY CONTENT THROUGHOUT CONSISTENTLY ADDRESSES THE LATEST MATLAB® FEATURES. Count on your students receiving timely instruction as this edition highlights advancements from the latest MATLAB® version, including the new graphics system, the latest functions and data types and MATLAB® Apps.
  • THOROUGH COVERAGE OF MATLAB® TOOLS MAKE PROGRAMMING EASIER. Students examine MATLAB® tools, including the Editor/Debugger, Workspace Browser, Help Browser and GUI design tools, as they study the principles of clean and efficient programming.
  • EFFECTIVE LEARNING FEATURES, SUCH AS "GOOD PROGRAMMING PRACTICE" BOXES, HIGHLIGHT STRONG PROGRAMMING SKILLS. These "Good Programming Practice" features guide students toward developing good habits and effective programming practices as key skills are introduced.
  • "PROGRAMMING PITFALL" BOXES HIGHLIGHT COMMON ERRORS. Learning features such as "Programming Pitfalls" draw attention to frequent mistakes and typical erroneous assumptions so that new programmers can avoid these errors.
  • COVERAGE EMPHASIZES DATA STRUCTURES AND OBJECT-ORIENTED MATLAB®. Students learn to work with data of various types and sizes as well as create programs using object-oriented techniques.
  • VARIETY OF PROVEN STUDENT LEARNING AIDS HELP ENSURE THOROUGH COMPREHENSION. The author includes a variety of quizzes, end-of-chapter summaries and questions (with answers) for self-testing. These tools enable students to check their understanding as they progress.
  • EASILY ACCESSIBLE SOURCE CODE. The source code for all examples in the book and instructor's source code for all solutions are provided on the book's website.
  • Coverage of the use of functions to decompose tasks into smaller subtasks, data hiding, unit testing, and how to avoid common mistakes helps readers maximize their effective use of MATLAB®.
  • Chapter 3 is dedicated to 2D plots, collecting basic plotting information in a single place early in the book so that it can be applied in student exercises. Chapter 8 has extensive coverage of all MATLAB® 2D and 3D plot types.
1. INTRODUCTION TO MATLAB.
The Advantages of MATLAB. Disadvantages of MATLAB. The MATLAB Environment. Using MATLAB as a Calculator. MATLAB Script Files. Summary. Exercises.
2. MATLAB BASICS.
Variables and Arrays. Creating and Initializing Variables in MATLAB. Multidimensional Arrays. Subarrays. Special Values. Displaying Output Data. Data Files. Scalar and Array Operations. Hierarchy of Operations. Built-in MATLAB Functions. Introduction to Plotting. Examples. MATLAB Applications: Vector Mathematics. MATLAB Applications: Matrix Operations and Simultaneous Equations. Debugging MATLAB Programs. Summary. Exercises.
3. TWO-DIMENSIONAL PLOTS.
A Note on Character Arrays vs Strings in Plots. Additional Plotting Features for Two-Dimensional Plots. Polar Plots. Annotating and Saving Plots. Additional Types of Two-Dimensional Plots. Using the plot function with Two-Dimensional Arrays. Plots with Two y Axes. Summary. Exercises.
4. BRANCHING STATEMENTS AND PROGRAM DESIGN.
Introduction to Top-Down Design Techniques. Use of Pseudocode. The Logical Data Type. Branches. More on Debugging MATLAB Programs. Code Sections. MATLAB Applications: Roots of Polynomials. Summary. Exercises.
5. LOOPS AND VECTORIZATION.
The while Loop. The for Loop. Logical Arrays and Vectorization. The MATLAB Profiler. Additional Examples. The textread Function. MATLAB Applications: Statistical Functions. MATLAB Applications: Curve Fitting and Interpolation. Summary. Exercises.
6. BASIC USER-DEFINED FUNCTIONS.
Introduction to MATLAB Functions. Variable Passing in MATLAB: The Pass-By-Value Scheme. Optional Arguments. Sharing Data Using Global Memory. Preserving Data Between Calls to a Function. Built-in MATLAB Functions: Sorting Functions. Built-in MATLAB Functions: Random Number Functions. Summary. Exercises.
7. ADVANCED FEATURES OF USER-DEFINED FUNCTIONS.
Function Functions. Function Handles. Functions eval and feval. Local Functions, Private Functions, and Nested Functions. An Example Application: Solving Ordinary Differential Equations. Anonymous Functions. Recursive Functions. Plotting Functions. Histograms. An Example Application: Numerical Integration. Summary. Exercises.
8. COMPLEX NUMBERS AND 3D PLOTS.
Complex Data. Multidimensional Arrays. Gallery of MATLAB Plots. Line Plots. Discrete Data Plots. Polar Plots. Contour Plots. Surface and Mesh Plots. Pie Charts, Bar Plots, and Histograms. Color Order, Color Maps, and Color Bars. Summary. Exercises.
9. ADDITIONAL DATA TYPES.
Character Arrays Versus Strings. Character Arrays. Strings. Character Functions. Summary of Character Array and String Functions. The single Data Type. Integer Data Types. Limitations of the single and Integer Data Types. The datetime and duration Data Types. Summary. Exercises.
10. SPARSE ARRAYS, CELL ARRAYS, STRUCTURES, AND TABLES.
Sparse Arrays. Cell Arrays. Structures. Tables. Summary. Exercises.
11. INPUT-OUTPUT FUNCTIONS.
The textread Function. More about the load and save Commands. An Introduction to MATLAB File Processing. File Opening and Closing. Binary I/O Functions. Formatted I/O Functions. Comparing Formatted and Binary I/O Functions. File Positioning and Status Functions. The textscan Function. Function uiimport. Summary. Exercises.
12. USER-DEFINED CLASSES AND OBJECT-ORIENTED PROGRAMMING.
An Introduction to Object-Oriented Programming. The Structure of a MATLAB Class. Value Classes versus Handle Classes. Destructors: The delete Method. Access Methods and Access Controls. Static Methods. Defining Class Methods in Separate Files. Overriding Operators. Events and Listeners. Exceptions. Superclasses and Subclasses. Summary. Exercises.
13. HANDLE GRAPHICS AND ANIMATION.
Handle Graphics. The MATLAB Graphics System. Object Handles. Examining and Changing Object Properties. Using set to List Possible Property Values. User-Defined Data. Finding Objects. Selecting Objects with the Mouse. Position and Units. Printer Positions. Default and Factory Properties. Restoring Default Properties. Graphics Object Properties. Animations and Movies. Summary. Exercises.
14. MATLAB APPS AND GRAPHICAL USER INTERFACES.
How a Graphical User Interface Works. Creating and Displaying a Graphical User Interface. Object Properties. Additional Containers: Panels, Tab Groups, and Button Groups. Dialog Boxes. Menus. Summary. Exercises.
WebAssign
Each WebAssign online product offers the full textbook combined with a flexible and fully customizable online instructional assignments and tools.

Cengage provides a seamless user experience for Learning Management Systems (LMS) integration. Please contact your Cengage Learning Consultant for ordering information and visit our Learning Management System Integration web page on WebAssign for general information.

Standalone Digital Access — Ultimate Value

Recommended and most popular

  • ISBN-10: 8214001609
  • ISBN-13: 9798214001609
  • RETAIL £36.00

Textbook Only Options

Traditional eBook and Print Options

{{collapseContainerClosed['detail_0'] ? 'Show More' : 'Show Less'}}

  • ISBN-10: 8214001641
  • ISBN-13: 9798214001647
  • RETAIL £51.50

  • ISBN-10: 8214001536
  • ISBN-13: 9798214001531
  • RETAIL £103.00

Cengage provides a range of supplements that are updated in coordination with the main title selection. For more information about these supplements, contact your Learning Consultant.

FOR STUDENTS

WebAssign for Chapman's MATLAB Programming for Engineers, Multi-Term Instant Access

ISBN: 9798214001609
WebAssign for Chapman's MATLAB® PROGRAMMING FOR ENGINEERS, is a flexible and fully customizable online instructional solution that puts powerful tools in the hands of instructors, enabling you to deploy assignments, instantly assess individual student and class performance and help your students master the course concepts. With WebAssign's powerful digital platform and text-specific content, you can tailor your course with a wide range of assignment settings, add your own questions and content and access student and course analytics and communication tools.