Tagged Questions
5
votes
6answers
3k views
Solve Quadratic Equation in C++
I am trying to write a function in C++ that solves for X using the quadratic equation. This is what I have written initially, which seems to work as long as there are no complex numbers for an answer:
...
1
vote
2answers
1k views
Using Scheme code to solve a quadratic equation?
I wrote this scheme code to compute one solution of the quadratic equation a*x2 + b*x + c = 0
(define (solve-quadratic-equation a b c) (define disc (sqrt (- (* b b) (* 4.0 a c)))) (/ (+ (- b) disc) ...
0
votes
1answer
56 views
I need a Java library to help me solve multi-times equations
I just started using Java to simulate solar panel's performance, however the single diode model requires lots of calculations:
basically, each function is a function of the other, all of them of the ...