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
linalg[jordan] - compute the Jordan form of a matrix
Calling Sequence
jordan(A)
jordan(A, 'P')
Parameters
A
-
square matrix
'P'
(optional) used to return the transition matrix
Description
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The call jordan(A) computes and returns the Jordan form J of a matrix A.
J has the following structure: where the ji's are Jordan block matrices. The diagonal entries of these Jordan blocks are the eigenvalues of A (and also of J).
If the optional second argument is given, then P will be assigned the transformation matrix corresponding to this Jordan form, that is, the matrix P such that .
The Jordan form is unique up to permutations of the Jordan blocks.
The command with(linalg,jordan) allows the use of the abbreviated form of this command.
Examples
See Also
Eigenvals, linalg(deprecated)[eigenvals], linalg(deprecated)[frobenius], LinearAlgebra
Download Help Document