C# Class SharpVectors.Polynomials.Polynomial

Summary description for Polynomial.
Show file Open project: codebutler/savagesvg Class Usage Examples

Public Methods

Method Description
Evaluate ( double t ) : double

Evaluate

Interpolate ( double xs, double ys, int n, int offset, double x ) : ValueWithError

Interpolate - adapted from "Numerical Recipes in C"

Polynomial ( ) : System

Polynomial constuctor

Polynomial ( Polynomial that ) : System
Romberg ( double min, double max ) : double

Romberg - adapted from "Numerical Recipes in C"

Simpson ( double min, double max ) : double

Simspon - adapted from "Numerical Recipes in C"

this ( int index ) : double

Protected Methods

Method Description
trapezoid ( double min, double max, int n ) : double

trapezoid - adapted from "Numerical Recipes in C"

Method Details

Evaluate() public method

Evaluate
public Evaluate ( double t ) : double
t double
return double

Interpolate() public static method

Interpolate - adapted from "Numerical Recipes in C"
public static Interpolate ( double xs, double ys, int n, int offset, double x ) : ValueWithError
xs double
ys double
n int
offset int
x double
return ValueWithError

Polynomial() public method

Polynomial constuctor
public Polynomial ( ) : System
return System

Polynomial() public method

public Polynomial ( Polynomial that ) : System
that Polynomial
return System

Romberg() public method

Romberg - adapted from "Numerical Recipes in C"
public Romberg ( double min, double max ) : double
min double
max double
return double

Simpson() public method

Simspon - adapted from "Numerical Recipes in C"
public Simpson ( double min, double max ) : double
min double
max double
return double

this() public method

public this ( int index ) : double
index int
return double

trapezoid() protected method

trapezoid - adapted from "Numerical Recipes in C"
protected trapezoid ( double min, double max, int n ) : double
min double
max double
n int
return double