By The MathWorks

Show description

Read Online or Download MATLAB The Language of Technical Computing PDF

Similar software: systems: scientific computing books

Intuitive Probability and Random Processes using MATLAB

Intuitive likelihood and Random techniques utilizing MATLAB® is an advent to chance and random approaches that merges conception with perform. in line with the author’s trust that merely "hands-on" adventure with the fabric can advertise intuitive knowing, the method is to inspire the necessity for conception utilizing MATLAB examples, through concept and research, and eventually descriptions of "real-world" examples to acquaint the reader with a wide selection of purposes.

Elektromagnetische Felder und Netzwerke: Anwendungen in Mathcad und PSpice

Thema des Buches ist die umfassende Darstellung der Berechnung elektromagnetischer Felder und Netzwerke unter besonderer Berücksichtigung moderner Computerprogramme, speziell Mathcad und PSpice. Zielgruppe sind Studenten der Elektrotechnik oder Physik der Hochschul-Eingangssemester, aber auch Dozenten, die sich in die Anwendung dieser Programmpakete einarbeiten wollen.

Gewöhnliche Differentialgleichungen: Theorie und Praxis - vertieft und visualisiert mit Maple®

Die Theorie der Gewöhnlichen Differentialgleichungen ist ein grundlegendes und unverändert aktuelles Gebiet der Mathematik. Das vorliegende Buch führt nicht nur äußerst sorgfältig und umfassend in die Theorie ein, sondern vermittelt auch aufgrund der zahlreichen vollständig durchgerechneten Beispiele einen Einblick in deren Anwendungspraxis.

Additional info for MATLAB The Language of Technical Computing

Example text

The second command uses this identifier to disable any further warnings of that type from being issued: [msg, intcat_msgid] = lastwarn; warning('off', intcat_msgid); To reenable the warning so that it will now be displayed, use warning('on', intcat_msgid); You can use these commands to disable or enable the display of any MATLAB warning. Example of Combining Unlike Integer Sizes. After disabling the integer concatenation warnings as shown above, concatenate the following two numbers once, and then switch their order.

1-40 Empty Matrices, Scalars, and Vectors Empty Matrices, Scalars, and Vectors Although matrices are two dimensional, they do not always appear to have a rectangular shape. A 1-by-8 matrix, for example, has two dimensions yet is linear. These matrices are described in the following sections: • “The Empty Matrix” on page 1-41 An empty matrix has one of more dimensions that are equal to zero. A two-dimensional matrix with both dimensions equal to zero appears in MATLAB as []. The expression A = [] assigns a 0-by-0 empty matrix to A.

Triu Return the upper triangular part of a matrix. Constructing a Matrix from a Diagonal Vector The diag function has two operations that it can perform. You can use it to generate a diagonal matrix: A = diag([12:4:32]) A = 12 0 0 0 16 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 28 0 0 0 0 0 0 32 You can also use the diag function to scan an existing matrix and return the values found along one of the diagonals: A = magic(5) A = 17 24 23 5 4 6 10 12 11 18 1 7 13 19 25 8 14 20 21 2 15 16 22 3 9 1-39 1 Data Structures diag(A, 2) ans = 1 14 22 % Return contents of second diagonal of A Returning a Triangular Portion of a Matrix The tril and triu functions return a triangular portion of a matrix, the former returning the piece from the lower left and the latter from the upper right.

Download PDF sample

MATLAB The Language of Technical Computing by The MathWorks
Rated 4.36 of 5 – based on 40 votes