MathGroup Archive 1999

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: QUESTION (EigenVectors)

  • To: mathgroup at smc.vnet.net
  • Subject: [mg19410] Re: QUESTION (EigenVectors)
  • From: rfinley at netdoor.com (Richard Finley)
  • Date: Mon, 23 Aug 1999 13:57:20 -0400
  • Organization: Internet Doorway, Inc. -- http://www.netdoor.com/
  • References: <7pl79i$ch0@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Christian,
Since this is a Mathematica newsgroup, I presume you mean using Mathematica in which
case it is easy...if M is your matrix then
Eigensystem[M] will give you the eigenvalues and eigenvectors.  If you are
just looking for an algorithm for writing code yourself, try Numerical
Recipes by Press et al.  or even better, use one of the libraries like IMSL
or NAG to save yourself a lot of time and aggravation.  regards, RF


Christian Langis wrote in message <7pl79i$ch0 at smc.vnet.net>...
>Hi there.
>
>I am a a computer science student; and that is probably why
>this question may seem deprived of any chalenge to you. But it
>is quite challenging to me.
>
>The question is: how do you extract the 1st EigenVector from a
>3x3 matrix (and optionally 2nd and 3rd)?
>
>I read a solution which forces the person to extract the 3
>roots of a 3rd degree polynomial. And this has to be done by
>hand of course.
>
>Hence, it is possible to compute that manually. But I am rather
>looking for an algorithm do carry this task, a solution which
>does not involve any manual evaluation (such as root extraction).
>
>Therefore do you know any algorithm/source code to do that (or
>know where to find it)?
>
>thanks
>


  • Prev by Date: Re: response to Simulation
  • Next by Date: Re: Help with Percentile formula !!
  • Previous by thread: Re: QUESTION (EigenVectors)
  • Next by thread: This is what UpValues are for