Methods
static Cesium.TridiagonalSystemSolver.solve(diagonal, lower, upper, right) → Array.<Cartesian3>
求解线性方程的三对角线系统。
Performance:
Linear time.
Name | Type | Description |
---|---|---|
diagonal |
Array.<number> |
长度为 n 的数组,包含系数矩阵的对角线。 |
lower |
Array.<number> |
长度为 n - 1 的数组,包含系数矩阵的下对角线。 |
upper |
Array.<number> |
长度为 n - 1 的数组,包含系数矩阵的上对角线。 |
right |
Array.<Cartesian3> |
长度为 n 的笛卡尔数组,位于方程组的右侧。 |
Returns:
An array of Cartesians with length
n
that is the solution to the tridiagonal system of equations.
Throws:
-
DeveloperError : 对角线和 right 的长度必须相同。
-
DeveloperError : lower 和 upper 必须具有相同的长度。
-
DeveloperError : lower 和 upper 必须比对角线的长度小 1。
Example:
const lowerDiagonal = [1.0, 1.0, 1.0, 1.0];
const diagonal = [2.0, 4.0, 4.0, 4.0, 2.0];
const upperDiagonal = [1.0, 1.0, 1.0, 1.0];
const rightHandSide = [
new Cesium.Cartesian3(410757.0, -1595711.0, 1375302.0),
new Cesium.Cartesian3(-5986705.0, -2190640.0, 1099600.0),
new Cesium.Cartesian3(-12593180.0, 288588.0, -1755549.0),
new Cesium.Cartesian3(-5349898.0, 2457005.0, -2685438.0),
new Cesium.Cartesian3(845820.0, 1573488.0, -1205591.0)
];
const solution = Cesium.TridiagonalSystemSolver.solve(lowerDiagonal, diagonal, upperDiagonal, rightHandSide);