polynomial.h File Reference

Definition of a cubic spline. More...

#include "MathDefs.h"
#include "curve_abc.h"
#include <iostream>
#include <algorithm>
#include <functional>
#include <stdexcept>
Include dependency graph for polynomial.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  curves::polynomial< Time, Numeric, Safe, Point, T_Point >
 Represents a polynomial of an arbitrary order defined on the interval $[t_{min}, t_{max}]$. It follows the equation :
$ x(t) = a + b(t - t_{min}) + ... + d(t - t_{min})^N $
where N is the order and $ t \in [t_{min}, t_{max}] $. More...
 

Namespaces

 curves
 

Detailed Description

Definition of a cubic spline.

Author
Steve T.
Version
0.1
Date
06/17/2013

This file contains definitions for the polynomial struct. It allows the creation and evaluation of natural smooth splines of arbitrary dimension and order