Example usage for org.apache.commons.math3.analysis.interpolation UnivariateInterpolator interface-usage

List of usage examples for org.apache.commons.math3.analysis.interpolation UnivariateInterpolator interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis.interpolation UnivariateInterpolator interface-usage.

Usage

From source file eu.crisis_economics.abm.algorithms.statistics.FloorInterpolator.java

/**
  * A custom implementation of the {@link UnivariateInterpolator} interface.<br><br>
  * 
  * This implementation generates a {@link UnivariateFunction} {@code F} which
  * evaluates as follows: the value {@code F(t)} is taken to be {@code y[x[t]]}
  * where {@code x[t]} is the closest interpolation key less than, or equal to, 

From source file logic.ApacheInterpolation.java

/**
 * Implements the <a href="
 * http://mathworld.wolfram.com/NewtonsDividedDifferenceInterpolationFormula.html">
 * Divided Difference Algorithm</a> for interpolation of real univariate
 * functions. For reference, see <b>Introduction to Numerical Analysis</b>,
 * ISBN 038795452X, chapter 2.

From source file cz.cuni.lf1.lge.ThunderSTORM.results.ModifiedLoess.java

/**
 * Implements the <a href="http://en.wikipedia.org/wiki/Local_regression">
 * Local Regression Algorithm</a> (also Loess, Lowess) for interpolation of
 * real univariate functions.
 * <p/>
 * For reference, see