ICY Version 1.0.1.0
Static Public Member Functions

icy.math.Interpolator Class Reference

List of all members.

Static Public Member Functions

static double[] doYLinearInterpolation (ArrayList< Point > points, double xinc)
static double[] doYLinearInterpolation (double[] x, double[] y, double xinc)
static double[] doYSplineInterpolation (ArrayList< Point > points, double xstep)
static double[] doYSplineInterpolation (double[] x, double[] y, double xstep)
static double[] doLinearInterpolation (double start, double end, double step)
static double[] doLinearInterpolation (double start, double end, int size)
static double[] doLogInterpolation (double start, double end, int size)
static double[] doExpInterpolation (double start, double end, int size)

Detailed Description

Author:
stephane

Member Function Documentation

static double [] icy.math.Interpolator.doExpInterpolation ( double  start,
double  end,
int  size 
) [static]

Do exponential interpolation from start to end with specified size (step number)

static double [] icy.math.Interpolator.doLinearInterpolation ( double  start,
double  end,
double  step 
) [static]

Do linear interpolation from start to end with specified increment step

static double [] icy.math.Interpolator.doLinearInterpolation ( double  start,
double  end,
int  size 
) [static]

Do linear interpolation from start to end with specified size (step number)

static double [] icy.math.Interpolator.doLogInterpolation ( double  start,
double  end,
int  size 
) [static]

Do logarithmic interpolation from start to end with specified size (step number)

static double [] icy.math.Interpolator.doYLinearInterpolation ( double[]  x,
double[]  y,
double  xinc 
) [static]

Return Y linear interpolated coordinates from specified points and given X increment

static double [] icy.math.Interpolator.doYLinearInterpolation ( ArrayList< Point >  points,
double  xinc 
) [static]

Return Y linear interpolated coordinates from specified points and given X increment

static double [] icy.math.Interpolator.doYSplineInterpolation ( ArrayList< Point >  points,
double  xstep 
) [static]

Return Y spline interpolated coordinates from specified points and given X increment

static double [] icy.math.Interpolator.doYSplineInterpolation ( double[]  x,
double[]  y,
double  xstep 
) [static]

Return Y spline interpolated coordinates from specified points and given X increment


The documentation for this class was generated from the following file:
 All Classes Functions Variables