Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
163 views

how to: solver foundation quadratic least squares

I have two independant variables (GSH and Gls). Using these two variables I'm trying to predict an outcome (prob). Using a function of the form: prob=a*Gls^2+b*GSH^2+c*Gls+d*GSH+e. (where a,b,c,d,e ...
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: ...
3
votes
2answers
99 views

Is there a matlab built-in that calculates the quadratic form (x'*A*x)?

Pretty straightforward question: Given an N x N symmetric matrix A and an N-vector x, is there a built-in Matlab function to calculate x'*A*x? i.e., instead of y = x'*A*x, is there a function ...
3
votes
1answer
155 views

Simple Multiplication and Arithmetic in C

Hi I have an assignment to compute the roots of quadratic equations in C, should be pretty simple and I know what I need to do with the program but I am having a problem nonetheless. It works fine ...
3
votes
1answer
274 views

Draw a quadratic bezier curve through three given points

I have three points in 2D and I want to draw a quadratic bezier curve passing through them. How do I calculate the middle control point (x1 and y1 as in quadTo)? I know linear algebra from college but ...
3
votes
3answers
892 views

Haskell and Quadratics

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 ...
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 ...
3
votes
3answers
811 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?
2
votes
0answers
52 views

Spliting a quadratic slice into 3 smaller slices HTML5 CANVAS JS

I have a quadratic curve that I use to create a slice of a piechart. The slice is situated in an axis of x and y, with the center point at (0,0). The radius is variable at radiusX and radiusY. This ...
2
votes
1answer
180 views

Is there a quadratic programming library in C++?

The only Google search result I found is QuadProg++ but it can not solve the quadratic programming problem whose matrix is not applicable for Cholesky decomposition. So can anyone give me some ...
2
votes
3answers
235 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 ...
2
votes
2answers
309 views

C# application solving for quadratic imaginary roots

I have constructed an extremely simple, yet fully-functioning and quite helpful, WinForms C# application that solves for the real roots of a quadratic equation. Here is my current programming logic: ...
2
votes
4answers
591 views

Smoothing Small Data Set With Second Order Quadratic Curve

I'm doing some specific signal analysis, and I am in need of a method that would smooth out a given bell-shaped distribution curve. A running average approach isn't producing the results I desire. I ...
2
votes
2answers
636 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 ...
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
2answers
50 views

python subclasses

I currently have a class called Polynomial, The initialization looks like this: def __init__(self, *termpairs): self.termdict = dict(termpairs) I'm creating a polynomial by making the keys the ...
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 = ...
1
vote
3answers
77 views

Program that calculates area between quadratic and x-axis in C

I'm new to this whole programming things so bear with me. I want to make a program that could calculat the area between quadratic and x-axis. Right now my code is only designed for functions were a is ...
1
vote
1answer
268 views

C# - Finding Peaks within a Given Width via Quadratic Fit

I'm working on an algorithm to find peaks in a List object. I'd thought up what I thought was a good (or good enough) algorithm for doing this by looking at a point and it's neighbors and, if it was a ...
1
vote
2answers
341 views

Factor a quadratic polynomial in Python

THIS IS NOT FOR HOMEWORK Since factoring a quadratic equation in my head just happens, and has done that since I learned it - how would I go about starting to write a quadratic factorer in Python?
1
vote
4answers
184 views

python - returns incorrect positive #

what i'm trying to do is write a quadratic equation solver but when the solution should be -1, as in quadratic(2, 4, 2) it returns 1 what am i doing wrong? #!/usr/bin/python import math def ...
1
vote
4answers
778 views

Get quadratic equation term of a graph in R

I need to find the quadratic equation term of a graph I have plotted in R. When I do this in excel, the term appears in a text box on the chart but I'm unsure how to move this to a cell for subsequent ...
1
vote
1answer
227 views

Does this method work for solving the quadratic equation using JavaScript?

I'm trying to do some "complex" math where I need to call upon some of JavaScript's Math properties to solve the quadratic equation. Does the following method work? root = Math.pow(inputb,2) - 4 ...
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
3answers
58 views

C++ + glut + OpenGL + gluSphere doesn't draw anything

I'm using GLUT to work with OpenGL (would work with SDL if I could). And I need to draw sphere. I'm using gluSphere but it simply doesn't draw anything. Here's my GLUT initialization: // Initializes ...
0
votes
0answers
17 views

silhouette of curve [closed]

Can someone please explain how to solve for t in the equation [B(t)×B′(t) = 0] provided by Gareth Rees on the following question: Calculate the horizon of a curved face? - Not extrema I'd love to ...
0
votes
1answer
26 views

Does the solution vector for quadratic equation remain when the equation is multiplied by 2?

I'm going to use quadprog in Matlab to solve a quadratic optimization problem. Here the basic equation looks like 'y = 1/2x'Hx + f'x', and we're finding x vector that minimizes the y function. Now ...
0
votes
1answer
42 views

Aproximate n grade Bezier through cubic and/or quadratic Bezier curves

I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods. Is there a way to split or aproximate the 6 (or n) ...
0
votes
1answer
29 views

About matlab quadprog using a structure hessian

I've been using matlab for solving a quadratic optimization problem, using a factor structured hessian, say I have a covariance matrix H and I wrote it as H=A+B*B'. Then I have a small piece of ...
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
2answers
105 views

How to fit a quadratic model knowing the maximum in R?

I have a data frame x and y, and I know the maximum of y. I want to fit this data to a quadratic model. How can I do it in R knowing the maximum? If I didn't know the maximum, I would fit it with ...
0
votes
3answers
188 views

Draw a quadratic arc over IplImage

I currently have an iplimage that has been modified using opencv. I am needing to draw an arc like that of the parabola of a quadratic equation, and I am unable to make one using the basic drawing ...
0
votes
1answer
145 views

Python: Using CVXOPT for quadratic programming

I'm using CVXOPT to do quadratic programming to compute the optimal weights of a potfolio using mean-variance optimization. There is a great example at ...
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 ...
0
votes
1answer
104 views

CPLEX quadratic simplex?

Does anybody know which simplex-like algorithm CPLEX uses to solve quadratic programs. what is the so called Quadratic Simplex it is using? Thank you in advance, Mehdi
0
votes
1answer
534 views

Quadratic Bezier Curve: Calculate Point

Hey, I'd like to calculate a point on a quadratic curve. To use it with the canvas element of html5. When I use the quadraticCurveTo() Function in JavaScript, I have a source point, a target point ...
0
votes
1answer
646 views

programming Quadratic equation using functions on fortran 95

I am trying to create a program that uses the quadratic formula. However, I want to do it entirely with external functions on fortran 95. My program keeps giving me weird errors regarding ...
0
votes
1answer
139 views

Gurobi solver in matlab

I want to use Gurobi solver in Matlab, but I don't know how to calculate the required matrices (qrow and qcol). For your reference I am copying the example provided in documentation. 0.5 x^2 - xy + ...
0
votes
1answer
242 views

ASP.NET quadratic calculation returning NaN erroneously

My ASP.NET MVC web application is supposed to calculate the roots of a second-degree polynomial (quadratic) but I'm erroneously getting Nan responses. I believe this is due to my improper setup, so ...
0
votes
3answers
305 views

Write an overloaded operator+ function so that two instances of the quadratic class can be added together as in the following code:

Write an overloaded operator+ function so that two instances of the quadratic class can be added together as in the following code: quadratic y1 = quadratic (1.0, -5.0, 7.0); quadratic y2 = quadratic ...
0
votes
1answer
507 views

The most efficient method of drawing multiple quads in OpenGL

I'm not very keen with OpenGL and I was wondering if someone could give me some insight on this. I'm a 'seasoned' programmer, I've read the redbook about VBOs and the like, but I was wondering from a ...
0
votes
2answers
866 views

Is it possible to exclude hidden rows when searching for duplicates in Excel?

I am working on a procedure in Excel using VBA that highlights duplicate rows. The procedure evaluates the result of the worksheet function sumproduct to determine if the row has duplicates. The ...
0
votes
1answer
1k views

C# Draw Quadratic Curve

How can I draw Quadratic Curve through 3 points by using C# System.Drawing namespace?
-2
votes
3answers
202 views

What's wrong with this c++ code?

I've made a few changes here but I'm still not getting what I expect to get. For example, when I substitute a for 1, b for 2 and c for 2, I should get -1+i and -1-i but when I run code it gives me ...
-3
votes
2answers
110 views

C++ Quadratic equation outputs: -1.#IND

My code works fine with: (1, -2, -8), It gives me the error above when I input a=1 b=0 c=1, Here is my code: double x=0,a=0,b=0,c=0,d=0; complexType solu1; complexType solu2; cout ...
-7
votes
0answers
40 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).