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[JordanBlockMatrix] - construct a Matrix of Jordan blocks
Calling Sequence
JordanBlockMatrix(K, d, options)
Parameters
K
-
list of ordered pairs of the form [eigenvalue, dimension]
d
(optional) non-negative integer; dimension of the resulting Matrix
options
(optional); constructor options for the result object
Description
The JordanBlockMatrix(K) function, where K is a list of ordered pairs [a, b], constructs a Matrix in which each diagonal block is a b-dimensional Jordan block defined by a.
The JordanBlockMatrix(K, d) function acts like JordanBlockMatrix(K) except that a d x d Matrix is returned.
The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).
By default, the JordanBlockMatrix function constructs a Matrix by using the band[0, 1] shape and storage.
This function is part of the LinearAlgebra package, and so it can be used in the form JordanBlockMatrix(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[JordanBlockMatrix](..).
Examples
See Also
LinearAlgebra[CharacteristicPolynomial], LinearAlgebra[CompanionMatrix], LinearAlgebra[DiagonalMatrix], LinearAlgebra[MinimalPolynomial], Matrix
Download Help Document