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
Matlab[size] - compute the size of a MapleMatrix or MatlabMatrix using MATLAB
Calling Sequence
size(X)
Parameters
X
-
MapleMatrix, or MatlabMatrix
Description
The size command computes the size of a matrix using MATLAB(R).
Executing the size command returns an integer list with n elements for an n-dimensional object. For example, a three-by-four matrix is two-dimensional, and returns a list with two elements. Each element represents the size of the corresponding dimension. The three-by-four matrix returns the list [3, 4].
To compute the size of a Maple variable, you should use Matlab[dimensions]. Calling size when X is a Maple variable causes X to be copied into the MATLAB memory space before the MATLAB size command is called. If X is already a MATLAB variable (that is, X is a string), then the size is immediately and efficiently computed.
Examples
Setting two Maple matrices.
The size of these matrices in Maple is 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 size of the new matrix is determined with the Maple call.
[2, 2]
See Also
LinearAlgebra[Dimension], Matlab, Matlab[getvar], Matlab[setvar], MatlabMatrix
Download Help Document