This consultant introduces the elemental Maple programming innovations, akin to expressions, info buildings, looping and selection mechanisms, tactics, enter and output, debugging, and the Maplet person Interface Customization approach.

Show description

Read or Download Maple 12 introductory programming guide (ISBN 1897310465)(398s) PDF

Similar software: systems: scientific computing books

Intuitive Probability and Random Processes using MATLAB

Intuitive chance and Random strategies utilizing MATLAB® is an advent to chance and random procedures that merges thought with perform. in response to the author’s trust that in basic terms "hands-on" event with the fabric can advertise intuitive knowing, the process is to inspire the necessity for concept utilizing MATLAB examples, through idea and research, and at last descriptions of "real-world" examples to acquaint the reader with a wide selection of functions.

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.

Extra resources for Maple 12 introductory programming guide (ISBN 1897310465)(398s)

Sample text

Ditto. 4 Programming Unary Operators Operator + ! $ not &string . %integer Meaning unary plus (prefix) unary minus (prefix) factorial (postfix) sequence operator (prefix) logical not (prefix) neutral operator (prefix) decimal point (prefix or postfix) label (prefix) names. For more information about indexed names, see page 34. The simplest instance of a name consists of a sequence of letters, digits, and underscores. If you require a name that includes blank spaces, use left single quotes (for more information, see page 28).

Type. 18 For more information on the select function, see page 156. 2 Tokens • 39 You cannot assign to a string. > "hello" := 5; Error, invalid left hand side of assignment Do not confuse the double quote character, which delimits a string, with the left single quote character (‘), which forms a name (symbol), or right single quote (’), which delays evaluation. For more information on left and right single quotes, see pages 28 and 100, respectively. In the following sections, strings and string operations are described.

Special Characters in Names To make the left single quote character appear in a name, enter a backslash character (\) followed by a left single quote (‘) where you want the left single quote character to appear. The backslash is the escape character in Maple. backslash. > ‘a\‘b‘; a‘b Similarly, to cause a backslash to appear as one of the characters in a name, enter two consecutive backslashes, \. You must escape the backslash because the backslash also acts as a line continuation character. For more information, see page 47.

Download PDF sample

Maple 12 introductory programming guide (ISBN
Rated 4.26 of 5 – based on 17 votes