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
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.
More to the point: what does it hace to do with an 8051?
Why would you want to do such a thing on an 8051?!
Yes. There are various algorithms out there to tackle this. Any good book on numeric math should contain appropriate sections.
Sure, if you're up to creating your own "fractional number" data type. Maybe there are libraries for it out there, though.