This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Problem, system of parametric equations

Hi at all
I need your help. I've got two questions for you.
FIRST: Is it possible to resolve simultaneously, with c code, a system of parametric equations? as an example
[ T- Fb+3/2Fb+V=0
[ [ Fb-T+V=0

where Fb= constants
v,T= are unknown quantities

SECOND: Is it possible to obtain the result of the system as fractions?

example:
V=-3/4Fb
T=-1/4Fb

Thanks very much for your help
Please write me soon
bye

Parents
  • Is it possible to resolve simultaneously, with c code, a system of parametric equations?

    yes, but what does this have to do with C? Most programming languages can do it, given the right algorithm.

    Is it possible to obtain the result of the system as fractions?

    I would try to avoid floating point calculations inside the controller. you can use shifts to multiply/divide your results to prevent the explicit need for floats.

Reply
  • Is it possible to resolve simultaneously, with c code, a system of parametric equations?

    yes, but what does this have to do with C? Most programming languages can do it, given the right algorithm.

    Is it possible to obtain the result of the system as fractions?

    I would try to avoid floating point calculations inside the controller. you can use shifts to multiply/divide your results to prevent the explicit need for floats.

Children