TooN Algorithm Library - tag  0.2
Namespaces | Functions
quartic.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  tag
 

Functions

double tag::eval_quartic (double B, double C, double D, double E, double x)
 A function to evaluate x^4 + Bx^3 + Cx^2 + Dx + E. More...
 
double tag::newton_quartic (double B, double C, double D, double E, double x)
 A function that performs one iteration of Newton's method on the quartic x^4 + Bx^3 + Cx^2 + Dx + E. More...
 
int tag::find_quartic_real_roots (double B, double C, double D, double E, double r[])