Cargando…

Essential MATLAB for Engineers and Scientists.

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. -...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Hahn, Brian
Otros Autores: Valentine, Daniel T., 1946-
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Saint Louis : Elsevier Science, 2016.
Edición:6th ed.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 4500
001 SCIDIR_ocn958385475
003 OCoLC
005 20231120112142.0
006 m o d
007 cr |n|---|||||
008 160917s2016 mou ob 001 0 eng d
040 |a EBLCP  |b eng  |e pn  |c EBLCP  |d YDX  |d OCLCQ  |d IDB  |d COO  |d N$T  |d TEFOD  |d OPELS  |d UIU  |d UMI  |d OCLCF  |d KNOVL  |d STF  |d DEBBG  |d DEBSZ  |d UPM  |d OTZ  |d LIP  |d AKR  |d UAB  |d VT2  |d MERUC  |d K6U  |d D6H  |d OCL  |d U3W  |d UUM  |d OCLCQ  |d NLE  |d UOK  |d AUD  |d OCLCQ  |d S9I  |d OCLCQ  |d UKMGB  |d ORE  |d AU@  |d CTU  |d OCLCO  |d OCL  |d DKU  |d OCLCO  |d OCLCQ  |d OCLCO 
015 |a GBB6B7897  |2 bnb 
015 |a GBB6B6071  |2 bnb 
016 7 |a 017984589  |2 Uk 
016 7 |a 017986417  |2 Uk 
019 |a 958098302  |a 959949474  |a 960087016  |a 962419828  |a 963184441  |a 965532863  |a 966184878  |a 966901122  |a 968201264  |a 994320161  |a 1003975386  |a 1044550514  |a 1097086101  |a 1187194934  |a 1264919152  |a 1311346836 
020 |a 9780128052716 
020 |a 0128052716 
020 |z 0081008775 
020 |z 9780081008775 
035 |a (OCoLC)958385475  |z (OCoLC)958098302  |z (OCoLC)959949474  |z (OCoLC)960087016  |z (OCoLC)962419828  |z (OCoLC)963184441  |z (OCoLC)965532863  |z (OCoLC)966184878  |z (OCoLC)966901122  |z (OCoLC)968201264  |z (OCoLC)994320161  |z (OCoLC)1003975386  |z (OCoLC)1044550514  |z (OCoLC)1097086101  |z (OCoLC)1187194934  |z (OCoLC)1264919152  |z (OCoLC)1311346836 
050 4 |a TA345.H24 2016 
072 7 |a MAT  |x 039000  |2 bisacsh 
072 7 |a MAT  |x 023000  |2 bisacsh 
072 7 |a MAT  |x 026000  |2 bisacsh 
082 0 4 |a 620.00285536900003 
100 1 |a Hahn, Brian. 
245 1 0 |a Essential MATLAB for Engineers and Scientists. 
250 |a 6th ed. 
260 |a Saint Louis :  |b Elsevier Science,  |c 2016. 
300 |a 1 online resource (430 pages) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
588 0 |a Print version record. 
505 0 |a 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 |a 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 |a 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 |a 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 |a 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. 
500 |a 5.4 Logical functions. 
520 |a 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. --  |c Edited summary from book. 
504 |a Includes bibliographical references and index. 
630 0 0 |a MATLAB. 
650 0 |a Engineering mathematics  |x Data processing. 
650 6 |a Math�ematiques de l'ing�enieur  |0 (CaQQLa)201-0021991  |x Informatique.  |0 (CaQQLa)201-0380011 
650 7 |a MATHEMATICS  |x Essays.  |2 bisacsh 
650 7 |a MATHEMATICS  |x Pre-Calculus.  |2 bisacsh 
650 7 |a MATHEMATICS  |x Reference.  |2 bisacsh 
630 0 7 |a MATLAB  |2 fast  |0 (OCoLC)fst01365096 
650 7 |a Engineering mathematics  |x Data processing  |2 fast  |0 (OCoLC)fst00910603 
700 1 |a Valentine, Daniel T.,  |d 1946- 
776 0 8 |i Print version:  |a Hahn, Brian.  |t Essential MATLAB for Engineers and Scientists.  |d Saint Louis : Elsevier Science, �2016  |z 9780081008775 
856 4 0 |u https://sciencedirect.uam.elogim.com/science/book/9780081008775  |z Texto completo