CubicRealPolynomial

Defines functions for 3rd order polynomial functions of one variable with only real coefficients.

方法

static Cesium.CubicRealPolynomial.computeDiscriminant(a, b, c, d)number

Provides the discriminant of the cubic equation from the supplied coefficients.
参数名称 类型 描述信息
a number The coefficient of the 3rd order monomial.
b number The coefficient of the 2nd order monomial.
c number The coefficient of the 1st order monomial.
d number The coefficient of the 0th order monomial.
返回值:
The value of the discriminant.

static Cesium.CubicRealPolynomial.computeRealRoots(a, b, c, d)Array.<number>

Provides the real valued roots of the cubic polynomial with the provided coefficients.
参数名称 类型 描述信息
a number The coefficient of the 3rd order monomial.
b number The coefficient of the 2nd order monomial.
c number The coefficient of the 1st order monomial.
d number The coefficient of the 0th order monomial.
返回值:
The real valued roots.