Core 1.0
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Attributes | Friends | List of all members
Nonic Class Reference

Nonic polynomials. More...

#include <nonic.h>

Public Member Functions

 Nonic ()
 Empty.
 
 Nonic (const double &, const double &, const double &, const double &, const double &, const double &, const double &, const double &, const double &, const double &)
 Creates a Nonic polynomial.
 
 ~Nonic ()
 Empty.
 
constexpr double & operator[] (int)
 Access to the coefficients of the sextic.
 
constexpr double operator[] (int) const
 Overloaded.
 
int CheckDegree () const
 Check the degree of the Nonic.
 
Nonic operator- () const
 Unary.
 
Nonicoperator+= (const Nonic &)
 Destructive sum of two Nonics.
 
Nonicoperator-= (const Nonic &)
 Destructive difference of two Nonics.
 
Nonicoperator*= (const double &)
 Scale a Nonics by a double value.
 
Nonicoperator/= (const double &)
 Scale a Nonics by a double value.
 
Octic Prime () const
 Computes the first derivative of a septic, which is a quintic.
 
Septic Second () const
 Computes the second derivative of a Nonic.
 
constexpr double operator() (const double &) const
 Evaluates the Nonic. More...
 
constexpr double Derivative (const double &) const
 Computes the derivative of the sextic. More...
 

Static Public Member Functions

static Nonic Compose (const Cubic &, const Cubic &)
 Compose the cubic by another one. More...
 
static double Smooth (const double &)
 Compute the value of smooth C4 interpolating function over unit interval. More...
 
static double SmoothStep (const double &, const double &, const double &)
 Compute a Nonic smooth step. More...
 
static double Gaussian (const double &, const double &, const double &)
 Compute a compactly supported Gaussian-like pulse. More...
 

Static Public Attributes

static double epsilon = 1.0e-10
 Epsilon value used to check discriminant terms in the root finding process.
 

Protected Attributes

double c [10] = { 0.0 }
 Array of coefficients.
 

Friends

Nonic operator+ (const Nonic &, const Nonic &)
 Overloaded.
 
Nonic operator- (const Nonic &, const Nonic &)
 Overloaded.
 
Nonic operator* (const Nonic &, const double &)
 Overloaded.
 
Nonic operator* (const double &, const Nonic &)
 Overloaded.
 
Nonic operator/ (const Nonic &, const double &)
 Overloaded.
 
std::ostream & operator<< (std::ostream &, const Nonic &)
 Overloaded output-stream operator. More...
 

Detailed Description

Nonic polynomials.

Constructors should provide the coefficients in descending order. Example of how to code the Nonic 19x9-x+1:

Nonic p(19.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.0,1.0);
Nonic polynomials.
Definition: nonic.h:8

Member Function Documentation

◆ Compose()

Nonic Nonic::Compose ( const Cubic p,
const Cubic q 
)
static

Compose the cubic by another one.

This function computes p ( q(x) ), where p denotes the cubic and q the argument.

Parameters
qThe cubic.
pThe argument cubic.

◆ Derivative()

constexpr double Nonic::Derivative ( const double &  x) const
inlineconstexpr

Computes the derivative of the sextic.

This function is more efficient than using Prime() and then evaluating the derivative for a given input value.

Parameters
xReal.

◆ Gaussian()

double Nonic::Gaussian ( const double &  c,
const double &  r,
const double &  x 
)
inlinestatic

Compute a compactly supported Gaussian-like pulse.

The function has C4 continuity.

See also
Cubic::Gaussian(), Quintic::Gaussian() and Septic::Gaussian()
Parameters
cCenter.
rRadius.
xValue.

◆ operator()()

constexpr double Nonic::operator() ( const double &  x) const
inlineconstexpr

Evaluates the Nonic.

Parameters
xArgument value of the function.

◆ Smooth()

double Nonic::Smooth ( const double &  x)
inlinestatic

Compute the value of smooth C4 interpolating function over unit interval.

The Nonic is defined as x4(-20 x3 + 70 x2 -84 x + 35). Its first four derivatives at 0.0 and 1.0 are 0.0.

The Lipschitz constant of the smooth nonic over [0,1] is λ=315/128.

Parameters
xArgument in [0,1].
See also
Septic::Smooth(), Quintic::Smooth(), Cubic::Smooth()

◆ SmoothStep()

double Nonic::SmoothStep ( const double &  x,
const double &  a,
const double &  b 
)
inlinestatic

Compute a Nonic smooth step.

The code is slightly more efficient than:

double y=Nonic::Smooth(Linear::Step(x,a,b));
static double Step(const double &, const double &, const double &)
Create a linear step.
Definition: linear.h:200
static double Smooth(const double &)
Compute the value of smooth C4 interpolating function over unit interval.
Definition: nonic.h:162
Parameters
xInput value.
a,bInterval values.
See also
Septic::SmoothStep(), Cubic::SmoothStep(), Quintic::SmoothStep()

Friends And Related Function Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream &  s,
const Nonic p 
)
friend

Overloaded output-stream operator.

Parameters
sStream.
pThe Nonic.