How to find eigenvalues and eigenvectors without using built-in functions (Ex. eig)?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Let's assume I have a 2x2 matrix defined by:
A = [ 7 3; 3 -1 ];
How can I find the eigenvectors and eigenvalues of matrix A without using built-in functions? More specifically, without using eig()?
4 Kommentare
James Tursa
am 26 Feb. 2021
Are you supposed to find eigenvalues by doing root finding on the characteristic equation? Are you supposed to be finding eivenvectors using the power method? There has to be more to your instructions that you can tell us.
Antworten (1)
Steven Lord
am 26 Feb. 2021
Without using any built-in functions? It depends -- do you consider the commands used in MEX-files to be built-in functions? In computing the eigenvalues and eigenvectors from scratch you're likely going to need to do arithmetic and all the operators (+ or plus, - or minus, * or mtimes, etc.) are built-in functions.
Specifically without using eig? Since I'm guessing this is part of a homework assignment your textbook likely include pseudocode for an algorithm to find eigenvalues and eigenvectors. If you encounter difficulty while implementing that pseudocode, show us the code you've written so far and describe specifically where you're having difficulty and what difficulty you're having and we may be able to offer suggestions.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!