Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
LinearAlgebra[JordanForm] - reduce a Matrix to Jordan form
Calling Sequence
JordanForm(A, out, options, outopts)
Parameters
A
-
Matrix
out
(optional) equation of the form output = obj where obj is one of 'J' or 'Q', or a list containing one or more of these names; selects result objects to compute
options
(optional); constructor options for the result object(s)
outopts
(optional) equation(s) of the form outputoptions[o] = list where o is one of 'J' or 'Q'; constructor options for the specified result object
Description
The JordanForm(A) function returns the Jordan form J of Matrix A.
The Jordan form J has the structure of having Jordan block submatrices along its diagonal. The diagonal entries of these Jordan blocks are the eigenvalues of A (and also of J).
The Jordan form is unique up to permutations of the Jordan blocks.
The output option (out) determines the content of the returned expression sequence.
Depending on what is included in the output option, an expression sequence containing one or more of the factors J (the Jordan form) or Q (the transition Matrix) can be returned. If output is a list, the objects are returned in the same order as specified in the list.
The returned Matrix objects have the property that .
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[o]=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions[o] option, the latter takes precedence (regardless of the order).
The following list indicates permissible values for index [o] of outputoptions with their corresponding meaning.
J
Jordan form
Q
transition Matrix
This function is part of the LinearAlgebra package, and so it can be used in the form JordanForm(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[JordanForm](..).
Examples
See Also
LinearAlgebra[Eigenvalues], LinearAlgebra[FrobeniusForm], LinearAlgebra[JordanBlockMatrix], LinearAlgebra[MatrixInverse], Matrix
Download Help Document