Ask Your Question

DVD's profile - activity

2021-11-10 15:51:24 +0200 received badge  Famous Question (source)
2018-04-15 10:13:22 +0200 received badge  Notable Question (source)
2017-05-31 12:00:37 +0200 received badge  Popular Question (source)
2014-09-08 21:46:20 +0200 commented answer How to plot the output of A.eigenvectors_right()?

It works!...

2014-09-08 21:44:59 +0200 received badge  Scholar (source)
2014-09-08 21:44:47 +0200 commented answer How to plot the output of A.eigenvectors_right()?

Looks like "flatten()" is needed (see below)...

2014-09-08 06:06:34 +0200 asked a question How to plot the output of A.eigenvectors_right()?

Trying to calculate and plot eigenvectors of a matrix A. The call A.eigenvectors_right() works, but the output is a mixed list. How to extract the eigenvectors from it to plot them? The attempt: s=Lambda.eigenvectors_right();v=s[1];v[1];v1=v[1];plot(v1) gives an error message... Thank you.