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:
...
2
votes
1answer
181 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
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 ...
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
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 ...
-2
votes
3answers
203 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
111 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 ...