| Author |
Comment/Response |
Nuke
|
09/10/05 02:27am
Hi All:
Eigenvalues are sorted in order of decreasing absolute value, but I have to change the order.
e.g.
In[1]:=m={{-10, 0, 0, 0}, {0, 12, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 0}};
Eigenvalues[m]
Out[1]:={12, -10, 1, 0}
But I want the output form of eigenvalues like
{-10,12,1,0}. How can I realize this, is there an option of Eigenvalus? Thank u very much
URL: , |
|