Equation solver project

Posted by Victor Barbu on Programmers See other posts from Programmers or by Victor Barbu
Published on 2012-09-15T20:32:11Z Indexed on 2012/09/16 15:50 UTC
Read the original article Hit count: 318

Filed under:
|

I would like to start a project destinated to students. My application has to solve any kind of equation, passed by the user as a string, exactly like in Matlab solve function. How shluld I do this? What programming language is the best for this purpose? Thanks in advance.

P.S This is a screenshot made in Matlab. This is how I would like the user to insert and receive the answer: enter image description here

Another example:

enter image description here

© Programmers or respective owner

Related posts about math

Related posts about numerical-equations

  • Large sparse (stiff) ODE system needed for testing

    as seen on Programmers - Search for 'Programmers'
    I hope this is the right place for this question. I have been working on a sparse stiff implicit ODE solver and have finished the code so far. I now tested the solver with the Van der Pol equation, and another stiff problem, which is of dimension 4. But to perform better tests I am searching for a… >>> More

  • How is this number calculated?

    as seen on Programmers - Search for 'Programmers'
    I have numbers; A == 0x20000000 B == 18 C == (B/10) D == 0x20000004 == (A + C) A and D are in hex, but I'm not sure what the assumed numeric bases of the others are (although I'd assume base 10 since they don't explicitly state a base. It may or may not be relevant but I'm dealing with memory… >>> More

  • Equation solver project

    as seen on Programmers - Search for 'Programmers'
    I would like to start a project destinated to students. My application has to solve any kind of equation, passed by the user as a string, exactly like in Matlab solve function. How shluld I do this? What programming language is the best for this purpose? Thanks in advance. P.S This is a screenshot… >>> More