MIRA
Public Member Functions | List of all members
LinearInterpolatorNearestNeighbourExtrapolator Class Reference

1D linear interpolator. More...

#include <math/LinearInterpolator.h>

Inheritance diagram for LinearInterpolatorNearestNeighbourExtrapolator:
Inheritance graph
[legend]

Public Member Functions

bool canExtrapolate () const
 
int samples () const
 
int samplesBefore () const
 
int samplesAfter () const
 
template<typename Tx , typename Ty , typename ContainerTx , typename ContainerTy >
Ty apply (const ContainerTx &x, const ContainerTy &y, const Tx &xx)
 

Detailed Description

1D linear interpolator.

This interpolator internally uses the lerp() method, and hence can be applied for all types that are supported by the lerp() method or implement their own lerp() method. Does support extrapolation only by taking the nearest neighbour - meaning the first or last sample of the supplied interval if alpha < 0 or alpha > 1.

Member Function Documentation

◆ canExtrapolate()

bool canExtrapolate ( ) const
inline

◆ samples()

int samples ( ) const
inline

◆ samplesBefore()

int samplesBefore ( ) const
inline

◆ samplesAfter()

int samplesAfter ( ) const
inline

◆ apply()

Ty apply ( const ContainerTx &  x,
const ContainerTy &  y,
const Tx &  xx 
)
inline

The documentation for this class was generated from the following file: