|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.ObjectnumRecipes.Interpolation
Utilities to interpolate data points (x_i, y_i) (i=0,...). A function in form of y=f(x) is obtained by a given data points.
コンストラクタの概要 | |
Interpolation()
|
メソッドの概要 | |
static double |
getErrorInPolynominalInterpolate()
|
static double |
mThPolynominalInterpolate(double[] xa,
double[] ya,
int n,
double x,
int m)
Interpolate with mTh pylinominal function. |
static double |
polynominalInterpolate(double[] xa,
double[] ya,
double x)
Given arrays xa[0....n-1] and ya[0....n-1], and given a value x, this method returns a value y by the polynominal interpolation. |
static int |
searchIndex(double[] xx,
double x,
int n)
Search the array index such that x is between xx[index] and xx[index+1]. xx must be monotonic, either increasing or decreasing. index =0 or index = n-1 is returned to indicate x is out of range. |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
public Interpolation()
メソッドの詳細 |
public static int searchIndex(double[] xx, double x, int n)
public static double polynominalInterpolate(double[] xa, double[] ya, double x)
public static double getErrorInPolynominalInterpolate()
public static double mThPolynominalInterpolate(double[] xa, double[] ya, int n, double x, int m)
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |