Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks
I'm trying to solve this problem. I want to solve a set of equations. It was an easy task if I got the equations in the next format:
2x1+3x2-7x3+7x5 = 7;
at this case I can turn them into a vector like this:
and to read set of those using Math::Matrix.[-7,2,3,-7,0,7]
The problem starts when I'm dealing with complex expression for example:
3*x+(3*a)*sin(y+w)+12z = 5
at this case it is very hard to build a suitable vector and therefore hard to use Math::Matrix.
does any of you monks have a clue or ever encountered such a problem.
Thanks in advance.
Michael
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: solving system of equations with complex expressions
by Albannach (Monsignor) on Oct 24, 2011 at 21:49 UTC | |
Re: solving system of equations with complex expressions
by bluescreen (Friar) on Oct 24, 2011 at 21:31 UTC | |
by ForgotPasswordAgain (Vicar) on Oct 24, 2011 at 21:38 UTC | |
by Anonymous Monk on Oct 25, 2011 at 06:16 UTC | |
Re: solving system of equations with complex expressions
by bluescreen (Friar) on Oct 25, 2011 at 00:56 UTC | |
Re: solving system of equations with complex expressions
by planetscape (Chancellor) on Oct 25, 2011 at 02:10 UTC | |
Re: solving system of equations with complex expressions
by anneli (Pilgrim) on Oct 24, 2011 at 22:46 UTC | |
Re: solving system of equations with complex expressions
by LanX (Saint) on Oct 24, 2011 at 23:19 UTC |