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
MTM[mldivide] - left matrix division
Calling Sequence
mldivide(A,B)
Parameters
A
-
matrix, vector, array, or scalar
B
Description
If A is a square matrix and B is a matrix, then mldivide(A,B) computes X, where X is the solution to the matrix equation A * X=B.
If A is a non-square matrix and B is a matrix, then mldivide(A,B) computes X, where X is a solution to the linear system A * X=B, in the least squares sense.
Maple normally treats arrays and vectors as distinct from matrices, in some cases not permitting a matrix operation when the given argument is not specifically declared as a matrix. This function implicitly extends arrays and vectors to 2 dimensions. Notably, n-element column vectors are treated as n x 1 matrices. Also, n-element row vectors and 1-D arrays are treated as 1 x n matrices.
If A is a scalar, then mldivide(A,B) computes ldivide(A,B).
If B is a scalar, then mldivide(A,B) is computed as if B is a 1 x 1 matrix.
Examples
See Also
LinearAlgebra[LeastSquares], LinearAlgebra[LinearSolve], MTM[ldivide], MTM[mrdivide], MTM[rdivide]
Download Help Document