1 /* Copyright Jukka Jyl�nki
2
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7        http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License. */
14
15 /** @file Polynomial.h
16         @author Jukka Jyl�nki
17         @brief */
18 #pragma once
19
20 #include "MathNamespace.h"
21
22 MATH_BEGIN_NAMESPACE
23
24 class Polynomial
25 {
26 public:
27
28         /// Solves a quadratic equation ax^2 + bx + c = 0 for x. Returns the number of roots found.
29         static int SolveQuadratic(float a, float b, float c, float &root1, float &root2);
30
31 #if 0
32         /// Solves a cubic equation x^3 + ax^2 + bx +  = 0 for x. Returns the number of roots found.
33         static int SolveCubic(float a, float b, float c, float dfloat &root1, float &root2, float &root3);
34
35         /// Solves a quartic equation ax^4 + bx^3 + cx^2 + dx + e = 0 for x. Returns the number of roots found.
36         static int SolveQuartic(float a, float b, float c, float d, float &root1, float &root2, float &root3, float &root4);
37 #endif
38
39         // @todo add Newton's method functions.
40 };
41
42 MATH_END_NAMESPACE

Go back to previous page