LinearApproximation

LinearApproximation ()

InterpolationAlgorithm 用于执行线性插值。

Methods

static Cesium.LinearApproximation.getRequiredDataPoints (degree) Number

给定所需的度数,返回插值所需的数据点数。由于线性插值只能生成一次多项式,因此该函数总是返回2。
Name Type Description
degree Number 所需的插值度。
Returns:
该函数总是返回2。

static Cesium.LinearApproximation.interpolateOrderZero (x, xTable, yTable, yStride, result ) Array.<Number>

使用线性逼近对值进行插值。
Name Type Description
x Number 将为其内插因变量的自变量。
xTable Array.<Number> 用于内插的自变量数组。价值此数组中的值必须按升序排列,并且相同的值在数组中不得出现两次。
yTable Array.<Number> 用于内插的因变量数组。对于一组三个时间1和时间2的相关值(p,q,w)应该如下:{p1,q1,w1,p2,q2,w2}。
yStride Number yTable中的因变量值的数量对应于xTable中的每个自变量值。
result Array.<Number> 可选 存储结果的现有数组。
Returns:
内插值数组,如果提供则返回结果参数。