Post Reply 
eigenvects function returning wrong answers for complex eigenvectors
01-02-2020, 09:05 AM
Post: #2
RE: eigenvects function returning wrong answers for complex eigenvectors
The reason is that eigVl and eigenvects do not necessarily sort the eigenvectors the same way. You should use jordan to compute both simultaneously:
a:=[[0,0.1],[-1,-0.2]];
p,d:=jordan(a);
p*d*p^-1;
In addition, this is more efficient (for large matrices).
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: eigenvects function returning wrong answers for complex eigenvectors - parisse - 01-02-2020 09:05 AM



User(s) browsing this thread: 1 Guest(s)