[sympy] generalized eigenvalue problem

2010-03-29 Thread notmyaddr...@teewars.org
Hallo, I trying to solve a generalized eigenvalue problem with two matrices <= 8x8. A*x = lambda*B*x where A and B are symmetric matrices Sympy only take one matrix for method eigenvals. So what I have tried by now is B^-1 *A*x = lambda*x but inverting B is much to heavy. In maple inverting B

Re: [sympy] generalized eigenvalue problem

2010-03-29 Thread Ondrej Certik
On Mon, Mar 29, 2010 at 3:34 AM, notmyaddr...@teewars.org wrote: > Hallo, > > I trying to solve a generalized eigenvalue problem with two matrices > <= 8x8. > > A*x = lambda*B*x where A and B are symmetric matrices > > Sympy only take one matrix for method eigenvals. So what I have tried > by now