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
linalg[eigenvalues] - compute the eigenvalues of a matrix
Calling Sequence
eigenvalues(A)
eigenvalues(A, C)
eigenvalues(A, 'implicit')
eigenvalues(A, 'radical')
Parameters
A
-
square matrix
C
matrix of the same shape as A
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 eigenvalues(A) returns a sequence of the eigenvalues of A. (Refer to ?sequence).
If A contains floating-point numbers, a numerical method is used where all arithmetic is done at the precision specified by Digits. Note that all the entries of A must be numerical, i.e. of type numeric or complex(numeric).
Otherwise (no floating-point numbers, i.e. the symbolic case), the eigenvalues are computed by solving the characteristic polynomial for the scalar variable lambda, where I is the identity matrix.
If a second parameter 'implicit' is given, the eigenvalues are expressed using Maple's RootOf notation for algebraic extensions. If the parameter 'radical' is given (the default), Maple tries to express the eigenvalues in terms of exact radicals. Note that if the characteristic polynomial has a factor of degree greater than four, then it may not be possible to express all the eigenvalues in terms of radicals.
The call eigenvalues(A, C) solves the ``generalized eigenvalue problem'', that is, finds the roots of the polynomial .
The command with(linalg,eigenvalues) allows the use of the abbreviated form of this command.
Examples
See Also
linalg(deprecated)[charpoly], linalg(deprecated)[eigenvectors], LinearAlgebra, sequence
Download Help Document