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
Matlab[dimensions] - compute the dimensions of a MapleMatrix or MatlabMatrix using Maple
Calling Sequence
dimensions(X)
Parameters
X
-
MapleMatrix, or MatlabMatrix
Description
The command dimensions computes the size of a matrix. This command is equivalent to the Matlab[size] command.
Use dimensions for computing dimensions of Maple variables, and Matlab[size] for computing the dimensions of MATLAB variables.
If X is a string, then the size is computed using MATLAB.
Executing the dimensions command returns an integer list with n elements for an n-dimensional object. For example, a 3x4 matrix is two-dimensional, therefore a list with two elements is returned. Each element corresponds to the size of that dimension. For the 3x4 matrix, the returned list is [3, 4].
Examples
Setting two Maple matrices.
The dimensions of these matrices in Maple are computed as
[2, 3]
[3, 2]
The matrices are set in the MATLAB session
The product of maplematrix_a*maplematrix_b is computed in MATLAB and the result is assigned to matlabmatrix_c. The dimensions of the new matrix are determined with the Maple call.
[2, 2]
See Also
LinearAlgebra[Dimension], Matlab, Matlab[getvar], Matlab[setvar], MatlabMatrix
Download Help Document