Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Part 5: Working with Matrices
Go to Maple Portal Previous Tutorial Next Tutorial
Introduction
Maple's Tutorials are designed to help you get started with Maple, learn about the key tools available in Maple, and lead you through a series of problems.
In Part 5: Working with Matrices, you will create matrices and vectors, perform linear algebra calculations, and extract entries.
To try this material on your own, start with an empty Maple document. Perform the steps described in the left column of each table below. The results of the steps are displayed in the right column for reference.
Refer to Help>Quick Reference for basic getting started tips.
Note for non-Windows users: The keystrokes given in this document are for Windows. There will be differences for other platforms. If you are using a different platform, see Help>Quick Help for the list of the most common keystrokes.
Creating Matrices and Vectors
Enter matrices using the palettes or using the matrix notation.
Steps
Result
Creating a Matrix Example: Use the Matrix palette to create a 3 x 3 matrix. Tab between the placeholders and fill in the values.
To assign this matrix to a name, we will type "A:=" and then use an equation label to refer to the matrix. To get an equation label, type [Ctrl][L]. In the Insert Label box, type 2.1.
Example: Create a matrix using Maple's matrix notation. Use <> brackets to enclose a sequence of the entries in each column, and | to separate the columns. Enclose the entire matrix in more brackets <>.
Forming a New Matrix from Two Matrices
To form a new matrix, simply adjoin these matrices.
Example: Use the matrix notation to form a new matrix from the columns of A and the columns of B.
Creating a Vector
Vectors are created in a similar way.
Example: Use the Matrix palette to create a 3 element column vector (with 3 rows and 1 column). Tab between the placeholders and fill in the values.
Example: Create a vector using vector notation. Use <> brackets to enclose the entire vector. Use a comma to separate the elements in a column vector,and | to separate elements in a row vector.
Working with Matrices and Vectors
Maple has extensive support for linear algebra.
Matrix Calculations with the Context Menu Use the context menu to perform matrix calculations.
Example: Select Standard Operations>Inverse to find the inverse.
Select Standard Operations>Determinant to find the determinant.
Matrix Calculations
Multiplying Matrices
Example: To multiply two matrices or to multiply a matrix by a vector, use a period (.) as the matrix multiplication symbol.
Multiplying By a Scalar
Example: To multiply a matrix by a scalar, use the multiplication symbol * (displayed as ).
Extracting Entries
To extract entries from a matrix, use the command M[i, j], where is the name of the matrix, and and are the row and column.
To extract a submatrix, give a range instead for each index.
Example: Extract the 2 x 2 matrix from the bottom left corner of the matrix A.
Tip: Negative indices can be used: -1 selects the last row (or column) entry, -2 selects the second-to-last row (or column) entry, and so on. Thus, you could obtain the same submatrix using A[-2..-1, 1..2].
This selects the submatrix located in the last two rows and first two columns of A.
To extract entries from a vector, use the command V[i], where i is a number or a range.
Viewing Large Matrices
Only small matrices are shown inline. For instance, consider the matrix created here. To browse this matrix, double-click on the summary.
You can export to Excel from this dialog. For more information on importing and exporting, see the next tutorial.
Tip: The LinearAlgebra package contains many commands for creating and manipulating matrices and vectors and for solving linear algebra problems.
See Also
Linear Algebra Package Index, Matrices
Download Help Document