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[TridiagonalForm] - reduce a square Matrix to tridiagonal form
Calling Sequence
TridiagonalForm(A, out, ip, options, outopts)
Parameters
A
-
square Matrix
out
(optional) equation of the form output = obj where obj is one of 'T', 'Q', or 'NAG', or a list containing one or more of these names; selects result objects to compute
ip
(optional) BooleanOpt(inplace); specifies if output overwrites input
options
(optional); constructor options for the result object(s)
outopts
(optional) equation(s) of the form outputoptions[o] = list where o is one of 'T', 'Q', or 'NAG'; constructor options for the specified result object
Description
The TridiagonalForm(A) function, where A is real symmetric or complex hermitian, returns a Matrix in tridiagonal form. This routine operates in the floating-point domain. Hence, the entries in Matrix A must necessarily be of type complex(numeric).
The tridiagonal Matrix has nonzero entries only on the diagonal, the first superdiagonal, and the first subdiagonal.
The original Matrix A and the orthogonal (unitary) reduction Matrix Q are related by if A is real symmetric. If A is complex hermitian, then .
If the Matrix A does not have a floating-point datatype, then a working copy which does is made in agreement with the environment variable UseHardwareFloats.
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 objects T (the tridiagonal form) and Q (the orthogonal (unitary) reduction Matrix) can be returned. If output is a list, the objects are returned in the same order as specified in the list.
If NAG is included in the output list, then the returned objects are an expression sequence consisting of T and Q. In this case, the Matrix T is returned with the result stored in its main and first subdiagonal. The first superdiagonal and the rest of the Matrix contains values unrelated to the solution. Matrix T is always returned as fully formed and it is not encoded in any way.
The inplace option (ip) determines where the result is returned. If given as inplace=true, then the result overwrites the first argument. If given as inplace=true and A has a complex data type, then the entries in T appear with a zero imaginary component. If given as inplace=false, or if this option is not included in the calling sequence, the result is returned in a new Matrix.
The condition inplace=true can be abbreviated to inplace.
The inplace option must be used with caution since, if the operation fails, the original Matrix argument may be corrupted.
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.
T
tridiagonal form
Q
reducing Matrix
NAG
NAG format of the reduction
The inplace and constructor options are mutually exclusive.
This function is part of the LinearAlgebra package, and so it can be used in the form TridiagonalForm(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[TridiagonalForm](..).
Examples
See Also
LinearAlgebra[Transpose], Matrix, type[BooleanOpt], type[complex], type[numeric]
Download Help Document