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
LinearAlgebra[GetResultShape] - return the resulting shape of a Matrix or Vector operation
Calling Sequence
GetResultShape(s1, s2, opn)
Parameters
s1, s2
-
name; Matrix or Vector shape
opn
name that is one of 'add', 'multiply', 'inverse', or 'transpose'; specifies the operation
Description
The GetResultShape(s1, s2, opn) function returns a list containing a shape name which can be used as the right-hand side of a shape equation when constructing a new Matrix or Vector from one or two other such objects. The empty list signifies no shape (i.e., rectangular shape).
This routine should be used by routines that operate on one or two input Matrices or Vectors, producing a new Matrix or Vector, and that need to set a shape on the resulting object.
The shape parameters, s1 and s2, should be names returned by MatrixOptions or VectorOptions. This routine recognizes the following built-in shapes:
symmetric
skewsymmetric
hermitian
skewhermitian
diagonal
triangular[upper]
triangular[lower]
triangular[upper,unit]
triangular[lower,unit]
Hessenberg[upper]
Hessenberg[lower]
band[l,u]
Note: The shape antisymmetric must be specified as skewsymmetric, and triangular[unit, lower] must be specified as triangular[lower, unit], even though these alternate shape names are accepted by the Matrix constructor.
If a shape name is not recognized (e.g., any user-defined indexing function), GetResultShape returns the empty list.
Note: No special handling is done for the following Matrix and Vector shapes:
unit
scalar
constant
identity
GetResultShape returns a shape that contains the result of the specified operation on input with the specified shape(s). The shape returned is valid for all input objects with the specified shape(s).
Since the dimension of the Matrices or Vectors is not provided, GetResultShape may return the empty list even in cases where a specific shape could be determined. For example, multiplying two banded Matrices together produces a banded Matrix, but it is not possible to determine whether the number of bands would be valid without knowledge of the dimensions of the input Matrices.
This function is part of the LinearAlgebra package, and so it can be used in the form GetResultShape(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[GetResultShape](..).
Examples
See Also
LinearAlgebra, Matrix, MatrixOptions, rtable_indexfcn, Vector, VectorOptions
Download Help Document