Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
linalg[matrix] - create a matrix
Calling Sequence
matrix(L)
matrix(m, n)
matrix(m, n, L)
matrix(m, n, f)
matrix(m, n, lv)
Parameters
L
-
list of lists or vectors of elements
m, n
positive integers (row and column dimensions)
f
function used to create the matrix elements
lv
list or vector of elements
Description
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The matrix function is part of the linalg package. It provides a simplified syntax for creating matrices. A general description of matrices in Maple is available under the heading matrix.
The call matrix(m, n, L) creates an m by n matrix where the first row of the matrix is defined by the list/vector L[1], the second row by L[2], and so forth. The call matrix(L) is equivalent to matrix(m, n, L) where and .
The call matrix(m, n) creates an m by n matrix with unspecified elements.
The call matrix(m, n, f) creates an m by n matrix whose elements are the result of the function f (possibly a constant) acting on the row and column index of the matrix. Thus, matrix(m, n, f) is equivalent to matrix([[f(1, 1), ..., f(1, n)], ..., [f(m, 1), ..., f(m, n)]]) .
The call matrix(m, n, lv) creates an m by n matrix whose elements are read off from lv row by row, where lv is a list or vector of elements of type algebraic.
Since matrices are represented as two-dimensional arrays, see array for further details about how to work with matrices.
The command with(linalg,matrix) allows the use of the abbreviated form of this command.
Note: The online documentation in Maple uses the convention that matrix (lowercase "m") refers to an array-based matrix used by routines in the linalg package, and Matrix (uppercase "M") refers to an rtable-based Matrix used by routines in the LinearAlgebra package. See LA_general for more information about linear algebra computations in Maple.
Examples
See Also
array(deprecated), linalg(deprecated)[matrix], linalg(deprecated)[vector], LinearAlgebra, Matrix, Vector
Download Help Document