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
MTM[eig] - compute the eigenvalues and eigenvectors of a matrix
Calling Sequence
l = eig(A)
[V,L] = eig(A)
[V,L,N] = eig(A)
Parameters
A
-
matrix
Description
The function eig(A) computes the eigenvalues and eigenvectors of the matrix A. That is, for each eigenvalue lambda of A, it solves the linear system (I * lambda - A) * X= 0 for X.
When the function is called using the form l := eig(A), the returned value of l is a column Vector containing the eigenvalues of A.
When the function is called using the form V,L := eig(A), the returned value of L is a Matrix with the eigenvalues of A along the main diagonal, and the returned value of V is a Matrix whose columns are the eigenvectors of A.
When the function is called using the form V,L,N := eig(A), L and V are as described above. N is a row vector of indices, one for each linearly independent eigenvector of A, such that the vector corresponding to the ith column of V has eigenvalue L[N[i],N[i]].
Examples
See Also
LinearAlgebra[Eigenvalues], LinearAlgebra[Eigenvectors], MTM[jordan], MTM[poly], MTM[svd]
Download Help Document