How to obtain the eigenvalues of a matrix

I need to obtain the eigenvalues of a matrix but I do not how.
Probably, it is very easy but I could not find any information about that.

···

---

Mathematically, it is not a so trivial process, it requires matrix inversion.
The Python module NumPy can do it. Please Google.

Jean-Michel Fauth, Switzerland.

It does NOT require matrix inversion, but rather just solution of a
polynomial equation of degree equal to the rank of the matrix. You
get that polynomial, called the characteristic polynomial, as the
determininant det |A - xI|, where A is the given matrix, I is the
identity matrix, and x is the variable for which to solve to get the
eigenvalues. See any elementary linear algebra text, or, indeed,
google for available routines in any of several languages.

jmf wrote:

···

I need to obtain the eigenvalues of a matrix but I do not how.
Probably, it is very easy but I could not find any information about that.

---

Mathematically, it is not a so trivial process, it requires matrix inversion.
The Python module NumPy can do it. Please Google.

Jean-Michel Fauth, Switzerland.

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

Or, you can install the SciPy package and use the function 'eigen.' :slight_smile:

   We need it in our model so I searched for a solution and that's what I
found. Also, you can calculate the eigenvalue and eigenvector of a
symmetrical matrix using Octave, the F/OSS equivalent of MatLab.

Rich

···

On Sat, 12 Aug 2006, Ronald Levine wrote:

It does NOT require matrix inversion, but rather just solution of a
polynomial equation of degree equal to the rank of the matrix. You get
that polynomial, called the characteristic polynomial, as the
determininant det |A - xI|, where A is the given matrix, I is the identity
matrix, and x is the variable for which to solve to get the eigenvalues. See any elementary linear algebra text, or, indeed, google for available
routines in any of several languages.

--
Richard B. Shepard, Ph.D. | The Environmental Permitting
Applied Ecosystem Services, Inc.(TM) | Accelerator
<http://www.appl-ecosys.com> Voice: 503-667-4517 Fax: 503-667-8863