Class HansenUtilities
- java.lang.Object
-
- org.orekit.propagation.semianalytical.dsst.utilities.hansen.HansenUtilities
-
public class HansenUtilities extends Object
Utilities class.- Author:
- Lucian Barbulescu
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PolynomialFunctionMatrix
buildIdentityMatrix2()
Build the identity matrix of order 2.static PolynomialFunctionMatrix
buildIdentityMatrix4()
Build the identity matrix of order 4.static PolynomialFunctionMatrix
buildZeroMatrix2()
Build the empty matrix of order 2.static PolynomialFunctionMatrix
buildZeroMatrix4()
Build the empty matrix of order 4.
-
-
-
Method Detail
-
buildIdentityMatrix2
public static final PolynomialFunctionMatrix buildIdentityMatrix2()
Build the identity matrix of order 2./ 1 0 \ I₂ = | | \ 0 1 /
- Returns:
- the identity matrix of order 2
-
buildZeroMatrix2
public static final PolynomialFunctionMatrix buildZeroMatrix2()
Build the empty matrix of order 2./ 0 0 \ E₂ = | | \ 0 0 /
- Returns:
- the identity matrix of order 2
-
buildIdentityMatrix4
public static final PolynomialFunctionMatrix buildIdentityMatrix4()
Build the identity matrix of order 4./ 1 0 0 0 \ | | | 0 1 0 0 | I₄ = | | | 0 0 1 0 | | | \ 0 0 0 1 /
- Returns:
- the identity matrix of order 4
-
buildZeroMatrix4
public static final PolynomialFunctionMatrix buildZeroMatrix4()
Build the empty matrix of order 4./ 0 0 0 0 \ | | | 0 0 0 0 | E₄ = | | | 0 0 0 0 | | | \ 0 0 0 0 /
- Returns:
- the identity matrix of order 4
-
-