Tagged Questions

3
votes
2answers
2k views

QP solver for Java [closed]

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 ...
2
votes
3answers
236 views

Nearest point on a quadratic bezier curve

I am having some issues calculating the nearest point on a quadratic curve to the mouse position. I have tried a handful of APIs, but have not had any luck finding a function for this that works. I ...
1
vote
2answers
94 views

How do I use letter as a variable/placeholder in a math equation? [closed]

Sorry if that title confused you its kinda hard for me to ask this without explaining it. I am writing a (fairly) simple program to find the roots of a quartic (biquadratic) function. My main question ...
1
vote
1answer
69 views

Mid-point of QuadCurve2D

I'm using Java's QuadCurve2D and I'd like to show an anchor point exactly half way across this curve. I have code like this: Point anchor = anchor(); if (showArcHandle) { Ellipse2D.Float e = ...
0
votes
1answer
53 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 ...
0
votes
1answer
139 views

Imaginary numbers

I have a method that takes 3 doubles and calculates the roots via the Quadratic Formula: public static double[] quadraticFormula(double a, double b, double c) throws ArithmeticException { double ...
-7
votes
0answers
49 views

Simplest quadratic algorythm [closed]

I'm looking for the simplest possible example of a quadratic algorithm in any of the C languages (preferably java).