Essential MATLAB for Engineers and Scientists (Record no. 3018)

MARC details
000 -LEADER
fixed length control field 05041cam a2200481Mu 4500
003 - CONTROL NUMBER IDENTIFIER
control field OCoLC
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20220621092855.0
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9780128052716
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 0128052716
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Canceled/invalid ISBN 0081008775
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Canceled/invalid ISBN 9780081008775
040 ## - CATALOGING SOURCE
Original cataloging agency EBLCP
Language of cataloging eng
Description conventions pn
Transcribing agency EBLCP
Modifying agency YDX
-- OCLCQ
-- IDB
-- COO
-- N$T
-- TEFOD
-- OPELS
-- UIU
-- UMI
-- OCLCF
-- KNOVL
-- STF
-- DEBBG
-- DEBSZ
-- UPM
-- OTZ
-- LIP
-- AKR
-- UAB
-- VT2
-- MERUC
-- K6U
-- D6H
-- OCL
-- U3W
-- UUM
-- OCLCQ
-- NLE
-- UOK
-- AUD
-- OCLCQ
-- S9I
-- OCLCQ
-- UKMGB
-- ORE
-- AU@
-- CTU
-- OCLCO
-- OCL
-- DKU
041 ## - LANGUAGE CODE
Language code of text/sound track or separate title Eng
050 #4 - LIBRARY OF CONGRESS CALL NUMBER
Classification number TA345
Item number VAL
072 #7 - SUBJECT CATEGORY CODE
Subject category code MAT
Subject category code subdivision 039000
Source bisacsh
072 #7 - SUBJECT CATEGORY CODE
Subject category code MAT
Subject category code subdivision 023000
Source bisacsh
072 #7 - SUBJECT CATEGORY CODE
Subject category code MAT
Subject category code subdivision 026000
Source bisacsh
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Hahn, Brian
Relator term Author
245 10 - TITLE STATEMENT
Title Essential MATLAB for Engineers and Scientists
Statement of responsibility, etc. Brian Hahn; Daniel T Valentine
250 ## - EDITION STATEMENT
Edition statement Sixth edition
260 ## - PUBLICATION, DISTRIBUTION, ETC.
Place of publication, distribution, etc. Saint Louis :
Name of publisher, distributor, etc. Elsevier Science,
Date of publication, distribution, etc. 2016
300 ## - PHYSICAL DESCRIPTION
Extent 411 pages :
Other physical details Illustrations
336 ## - CONTENT TYPE
Content type term text
Content type code txt
Source rdacontent
337 ## - MEDIA TYPE
Media type term computer
Media type code c
Source rdamedia
338 ## - CARRIER TYPE
Carrier type term online resource
Carrier type code cr
Source rdacarrier
500 ## - GENERAL NOTE
General note 5.4 Logical functions
504 ## - BIBLIOGRAPHY, ETC. NOTE
Bibliography, etc. note Includes bibliographical references and index
505 0# - FORMATTED CONTENTS NOTE
Formatted contents note Front Cover; Essential MATLAB for Engineers and Scientists; Copyright; Contents; Preface; Acknowledgments; Part 1 Essentials; 1 Introduction; 1.1 Using MATLAB; 1.1.1 Arithmetic; 1.1.2 Variables; 1.1.3 Mathematical functions; 1.1.4 Functions and commands; 1.1.5 Vectors; 1.1.6 Linear equations; 1.1.7 Tutorials and demos; 1.2 The desktop; 1.2.1 Using the Editor and running a script; 1.2.2 Help, publish and view; 1.2.3 Symbolics and the MuPAD notebook APP; 1.2.4 Other APPS; 1.2.5 Additional features; 1.3 Sample program; 1.3.1 Cut and paste; 1.3.2 Saving a program: script les
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note 1.3.3 A program in action Summary; Exercises; Appendix 1.A Supplementary material; 2 MATLAB Fundamentals; 2.1 Variables; 2.1.1 Case sensitivity; 2.2 The workspace; 2.2.1 Adding commonly used constants to the workspace; 2.3 Arrays: Vectors and matrices; 2.3.1 Initializing vectors: Explicit lists; 2.3.2 Initializing vectors: The colon operator; 2.3.3 The linspace and logspace functions; 2.3.4 Transposing vectors; 2.3.5 Subscripts; 2.3.6 Matrices; 2.3.7 Capturing output; 2.3.8 Structure plan; 2.4 Vertical motion under gravity; 2.5 Operators, expressions, and statements; 2.5.1 Numbers
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note 2.5.2 Data types2.5.3 Arithmetic operators; 2.5.4 Operator precedence; 2.5.5 The colon operator; 2.5.6 The transpose operator; 2.5.7 Arithmetic operations on arrays; 2.5.8 Expressions; 2.5.9 Statements; 2.5.10 Statements, commands, and functions; 2.5.11 Formula vectorization; 2.6 Output; 2.6.1 The disp statement; 2.6.2 The format command; 2.6.3 Scale factors; 2.7 Repeating with for; 2.7.1 Square roots with Newton's method; 2.7.2 Factorials!; 2.7.3 Limit of a sequence; 2.7.4 The basic for construct; 2.7.5 for in a single line; 2.7.6 More general for; 2.7.7 Avoid for loops by vectorizing!
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note 2.8 Decisions2.8.1 The one-line if statement; 2.8.2 The if-else construct; 2.8.3 The one-line if-else statement; 2.8.4 elseif; 2.8.5 Logical operators; 2.8.6 Multiple ifs versus elseif; 2.8.7 Nested ifs; 2.8.8 Vectorizing ifs?; 2.8.9 The switch statement; 2.9 Complex numbers; Summary; Exercises; Appendix 2.A Supplementary material; 3 Program Design and Algorithm Development; 3.1 The program design process; 3.1.1 The projectile problem; 3.2 Programming MATLAB functions; 3.2.1 Inline objects: Harmonic oscillators; 3.2.2 MATLAB function: y = f(x); Summary; Exercise
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note 4 MATLAB Functions and Data Import-Export Utilities4.1 Common functions; 4.2 Importing and exporting data; 4.2.1 The load and save commands; 4.2.2 Exporting text (ASCII) data; 4.2.3 Importing text (ASCII) data; 4.2.4 Exporting binary data; 4.2.5 Importing binary data; Summary; Exercises; 5 Logical Vectors; 5.1 Examples; 5.1.1 Discontinuous graphs; 5.1.2 Avoiding division by zero; 5.1.3 Avoiding in nity; 5.1.4 Counting random numbers; 5.1.5 Rolling dice; 5.2 Logical operators; 5.2.1 Operator precedence; 5.2.2 Danger; 5.2.3 Logical operators and vectors; 5.3 Subscripting with logical vectors
506 ## - RESTRICTIONS ON ACCESS NOTE
Terms governing access Available to OhioLINK libraries
520 ## - SUMMARY, ETC.
Summary, etc. Illustrating the essentials of MATLAB throughout, and featuring complete coverage of the software's windows and menus, this book provides a concise, balanced overview of MATLAB's functionality that facilitates independent learning, with coverage of both the fundamentals and applications. --
Assigning source Edited summary from book
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element Engineering mathematics
General subdivision Data processing
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element MATHEMATICS -- Essays.
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element MATHEMATICS -- Pre-Calculus.
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Valentine, Daniel T.,
Relator term co-author
710 2# - ADDED ENTRY--CORPORATE NAME
Corporate name or jurisdiction name as entry element Ohio Library and Information Network
776 08 - ADDITIONAL PHYSICAL FORM ENTRY
Relationship information Print version:
Main entry heading Hahn, Brian.
Title Essential MATLAB for Engineers and Scientists.
Place, publisher, and date of publication Saint Louis : Elsevier Science, ©2016
International Standard Book Number 9780081008775
856 40 - ELECTRONIC LOCATION AND ACCESS
Public note Connect to resource
Uniform Resource Identifier <a href="https://learning.oreilly.com/library/view/~/9780128052716/?ar">https://learning.oreilly.com/library/view/~/9780128052716/?ar</a>
942 ## - ADDED ENTRY ELEMENTS (KOHA)
Source of classification or shelving scheme Library of Congress Classification
Koha item type Books
Holdings
Withdrawn status Lost status Source of classification or shelving scheme Not for loan Home library Current library Date acquired Source of acquisition Inventory number Total Checkouts Full call number Barcode Date last seen Date last checked out Copy number Koha item type Shelving location
    Library of Congress Classification   Harare Institute of Technology Main Library Harare Institute of Technology Main Library 30/01/2020 Donation 3627/D 1 TA345VAL BK0010373 07/03/2024 23/02/2024 1 Books  
    Library of Congress Classification   Harare Institute of Technology Main Library Harare Institute of Technology Main Library 30/08/2022 Donation: Book Aid International 4009/D   TA345VAL bk003027 22/09/2022   2 Books General Collection