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
Student[NumericalAnalysis][IsMatrixShape] - Check whether a matrix is a certain shape or not
Calling Sequence
IsMatrixShape(A, shape)
Parameters
A
-
Matrix
shape
name; must be one of diagonal, strictlydiagonallydominant, diagonallydominant, hermitian, positivedefinite, symmetric, triangular[upper], triangular[lower], or tridiagonal
Description
The IsMatrixShape command verifies whether the matrix A is a certain "shape".
The only types of "shapes" that the IsMatrixShape command can verify are:
Diagonal : shape = diagonal
Strictly diagonally dominant : shape = strictlydiagonallydominant
Diagonally dominant : shape = diagonallydominant
Hermitian : shape = hermitian
Positive definite : shape = positivedefinite
Symmetric : shape = symmetric
Upper or lower triangular : shape = triangular[upper] or shape = triangular[lower], repectively
Tridiagonal : shape = tridiagonal
Notes
If neither upper nor lower is specified, the triangular option defaults to triangular[upper].
The Student[NumericalAnalysis] subpackage's definition of positive definiteness is as follows.
A complex n-by-n matrix A is positive definite if and only if A is Hermitian and for all n-dimensional complex vectors v, we have , where denotes the real part of a complex number.
A real n-by-n matrix A is positive definite if and only if A is symmetric and for all n-dimensional real vectors v, we have .
To check another "shape" that is not available with the Student[NumericalAnalysis][IsMatrixShape] command see the general IsMatrixShape command.
Examples
See Also
Student[NumericalAnalysis], Student[NumericalAnalysis][ComputationOverview]
Download Help Document