Home > Science, Technology & Agriculture > Electronics and communications engineering > Learning to Program with MATLAB: Building GUI Tools
Learning to Program with MATLAB: Building GUI Tools

Learning to Program with MATLAB: Building GUI Tools

          
5
4
3
2
1

Available


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

Learning to Program with MATLAB Introductory text integrating science, mathematics, and engineering to give a basic understanding of the fundamentals of computer programming with MATLAB Learning to Program with MATLAB: Building GUI Tools, Second Edition serves as a compact introduction to computer programming using the MATLAB language, covering elements of both program and graphical user interface (GUI) design to enable readers to create computer programs just like the ones they are accustomed to interacting with. Rather than being encyclopedic in scope, the goal of the text is to describe what users will find most useful and point to other features. Descriptions and examples of some of the most useful functions are included throughout, particularly with regards to engineering and science applications. The work also includes updated videos and problem solutions on an instructor companion website. The first edition of Learning to Program with MATLAB employed the MATLAB graphical user interface design environment (GUIDE) to develop the GUI tools. The second edition is based on the new and improved App Designer program, which has supplanted GUIDE. This edition includes: Core concepts of computer programming using MATLAB, such as arrays, loops, functions, and basic data structures How to write your own MATLAB functions, covering topics such as local workspaces, multiple outputs, function files, and other functional forms The new string class and table class, some new features of function arguments, and re-written sections for building GUI tools with App Designer Syntax for graphics and App Designer features, plus examples demonstrating the new way to handle string information Starting with the basics and building up to an emphasis on GUI tools, Learning to Program with MATLAB is a comprehensive introduction to programming in a robust and multipurpose language, making it an ideal classroom resource for both students and instructors in related programs of study.

Table of Contents:
Preface to the Second Edition xiii About the Companion Website xvii I MATLAB Programming 1 1 Getting Started 3 1.1 Running the MATLAB IDE 3 Manipulating windows 5 1.2 MATLAB variables 5 Variable assignment statements 6 Variable names 7 Variable workspace 8 1.3 Numbers and functions 8 1.4 Documentation 9 1.5 Writing simple MATLAB scripts 10 Block structure 11 Appropriate variable names 11 Useful comments 11 Units 11 Formatting for clarity 12 Basic display command 12 1.6 A few words about errors and debugging 12 Error messages are your friends 13 Sketch a plan on paper first 13 Start small and add slowly 13 1.7 Using the debugger 13 Looking ahead 14 Programming Problems 14 2 Vectors and Strings 19 2.1 Vector basics 20 2.2 Operations on vectors 21 Multiplication by a scalar 21 Addition with a scalar 21 Element-by-element operation with two vectors 21 Functions of vectors 22 Length of vectors 22 Subarrays 23 Concatenating vectors 23 2.3 Special vector functions 23 Statistical Functions 24 2.4 Using rand and randi 25 2.5 String basics 25 2.6 String operations 27 2.7 Character vectors 29 2.8 Getting information from the user 30 Looking ahead 31 Programming Problems 31 3 Plotting 35 3.1 The plot command 35 Axis scaling 38 Plot labeling 39 3.2 Tabulating and plotting a simple function 39 3.3 Bar graphs and histograms 43 Histograms 45 3.4 Drawing several plots on one graph 45 Multiple plots with a single plot command 46 Combining multiple plots with a hold command 48 Thickening plotted curves 49 3.5 Adding lines and text 50 3.6 Changing object properties 52 Looking ahead 54 Programming Problems 55 4 Matrices 57 4.1 Entering and manipulating matrices 57 Size of a matrix 59 Matrix transpose 60 4.2 Operations on matrices 60 Arithmetic operations with a scalar 60 Addition and subtraction of two matrices of the same size 61 Functions of matrices 61 Matrix multiplication 62 The identity matrix 62 The inverse of a matrix 63 The determinant of a matrix 64 Matrix–vector multiplication 64 4.3 Solving linear systems: the backslash operator 65 Extended example: solving circuit problems 65 Wire segments 66 Wire junctions 66 Voltage sources 66 Resistors 67 Ground 67 4.4 Special matrix functions 71 Looking ahead 72 Programming Problems 72 5 Control Flow Commands 75 5.1 Conditional execution: the if statement 75 5.2 Logical expressions 79 5.3 Logical variables 80 5.4 for loops 81 Good programming practice 84 5.5 while loops 84 5.6 Other control flow commands 86 Switch-case statement 86 Break statement 86 Programming Problems 87 6 Animation 93 6.1 Basic animation 94 6.2 Animating function plots 98 6.3 Kinematics of motion 101 One-dimensional motion: constant speed 101 Motion with constant acceleration 104 Time-marching dynamics: nonconstant force 106 6.4 Looking ahead 108 Programming Problems 108 7 Writing Your Own MATLAB Functions 114 7.1 MATLAB function files 115 Declaring MATLAB functions 115 7.2 Function inputs and outputs 116 7.3 Local workspaces 117 7.4 Multiple outputs 117 7.5 Function files 117 7.6 Other functional forms 118 Subfunctions 118 Nested functions 122 Anonymous functions 122 7.7 Optional arguments for functions 123 7.8 Looking forward 124 Programming Problems 125 8 More MATLAB Data Classes and Structures 132 8.1 Cell arrays 132 8.2 Structures 133 8.3 Complex numbers 134 8.4 Function handles 135 8.5 Tables 135 8.6 Other data classes and data structures 136 Programming Problems 137 II Building Gui Tools 139 9 Building GUI Tools with App Designer 141 9.1 The App Designer interface 142 9.2 Getting started: HelloTool 144 9.3 Components communicating: SliderTool 148 9.4 Transforming a MATLAB program into a GUI tool: DampedEfieldTool 150 Step0: Write and debug the program 151 Step1: Plan the GUI 152 Step 2: Create the GUI in App Designer 153 Step 3: Connect program inputs and outputs to the GUI components 155 Step 4: Add callbacks to invoke the primary model function 157 9.5 Test and improve 157 Many ways to do things 159 Key points from this chapter 159 Programming Problems 160 10 More GUI Techniques 168 10.1 Sharing data between callbacks 169 10.2 More GUI components 170 Text and Numeric Edit Fields 170 Drop Down 171 Check Box 171 Label 172 List Box 172 Radio Button Group 173 Image 173 Communicating user choices 173 Tab Group 174 Menu bar 174 Toolbar 176 Text Area 176 The uses of invisibility 176 10.3 Popups 176 Progress dialogue 176 Wait bar 178 Input dialogue 178 Confirm dialogue 179 10.4 Responding to keyboard input 181 10.5 Mouse events and object dragging 181 III Advanced Topics 187 11 More Graphics 189 11.1 Logarithmic plots 189 11.2 Plotting functions on two axes 192 11.3 Plotting surfaces 194 11.4 Plotting vector fields 199 11.5 Working with images 200 Importing and manipulating bit-mapped images 200 Placing images on surface objects 207 11.6 Rotating composite objects in three dimensions 209 12 More Mathematics 213 12.1 Derivatives 214 Derivatives of mathematical functions expressed as MATLAB functions 214 Derivatives of tabulated functions 215 12.2 Integration 218 Integrating tabulated functions 218 Integrating mathematical functions expressed as MATLAB functions 221 12.3 Zeros of a function of one variable 225 12.4 Function minimization 227 Finding a minimum of a function of one variable 227 Multidimensional minimization 229 Fitting to an arbitrary function by multidimensional minimization 229 Solving simultaneous nonlinear equations by multidimensional minimization 233 12.5 Solving ordinary differential equations 235 Plotting a slope field 238 12.6 Eigenvalues and eigenvectors 239 13 Reading and Writing Files 242 13.1 Saving and loading data in .mat files 242 13.2 Reading and writing spreadsheet files 244 13.3 Writing text files 245 The write matrix command 245 Writing formatted text files 246 Formatting a string using sprintf 249 13.4 Reading data from a text file 249 Reading into a cell array 250 Reading complicated text data files 250 13.5 A GUI interface to filenames using uiputfile and uigetfile 252 Appendix Using latex Commands 255 Index 261


Best Sellers


Product Details
  • ISBN-13: 9781119900474
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Height: 252 mm
  • No of Pages: 288
  • Spine Width: 10 mm
  • Weight: 590 gr
  • ISBN-10: 1119900476
  • Publisher Date: 15 Sep 2022
  • Binding: Paperback
  • Language: English
  • Returnable: N
  • Sub Title: Building GUI Tools
  • Width: 175 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Learning to Program with MATLAB: Building GUI Tools
John Wiley & Sons Inc -
Learning to Program with MATLAB: Building GUI Tools
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Learning to Program with MATLAB: Building GUI Tools

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA