4
votes
6answers
861 views
Solve Quadratic Equation in C++
Hello all,
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 …
3
votes
3answers
276 views
Haskell and Quadratics
Hi,
I have to write a program to solve quadratics, returning a complex number result.
I've gotten so far, with defining a complex number, declaring it to be part of num, so +,- and * - ing can take …
2
votes
3answers
329 views
Convert a quadratic curve points to polynomial representation?
I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve.
Using this data, how can I derive the polynomial representation of the curve?
1
vote
1answer
174 views
QP solver for Java
I'm looking for a good easy to use Java based Quadratic Programming (QP) solver.
Googling around I came across ojAlgo (http://ojalgo.org).
However, I was wondering if there are any other/better …
1
vote
1answer
160 views
Fast Method to Intersect two Integer Quadratic Beziers?
Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it …
0
votes
4answers
96 views
Algorithms that run in quadratic time? [closed]
What algorithms do you know that run in quadratic time?
0
votes
1answer
174 views
C# Draw Quadratic Curve
How can I draw Quadratic Curve through 3 points by using C# System.Drawing namespace?
0
votes
2answers
292 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) …
