Class PolynomialFunctionMatrix
java.lang.Object
org.orekit.propagation.semianalytical.dsst.utilities.hansen.PolynomialFunctionMatrix
A quadratic matrix of
PolynomialFunction.- Author:
- Petre Bazavan, Lucian Barbulescu
-
Method Summary
Modifier and TypeMethodDescriptionadd(PolynomialFunctionMatrix matrix) Add the argument matrix with the current matrix.getElem(int line, int column) Get the value of an element.getMatrixLine(int line) Get a line of the matrix.multiply(PolynomialFunctionMatrix matrix) Multiply the argument matrix with the current matrix.voidsetElem(int line, int column, PolynomialFunction value) Set an element of the matrix.voidsetMatrix(PolynomialFunction[][] polynomials) Set values for all elements.voidsetMatrixLine(int line, PolynomialFunction[] polynomials) Set the value of a line of the matrix.
-
Method Details
-
setElem
Set an element of the matrix.- Parameters:
line- the linecolumn- the columnvalue- the value
-
getElem
Get the value of an element.- Parameters:
line- the linecolumn- the column- Returns:
- the value
-
multiply
Multiply the argument matrix with the current matrix.- Parameters:
matrix- the argument matrix- Returns:
- the result of the multiplication
-
setMatrix
Set values for all elements.- Parameters:
polynomials- the values that will be used for the matrix
-
setMatrixLine
Set the value of a line of the matrix.- Parameters:
line- the line numberpolynomials- the values to set
-
getMatrixLine
Get a line of the matrix.- Parameters:
line- the line number- Returns:
- the line of the matrix as a vector
-
add
Add the argument matrix with the current matrix.- Parameters:
matrix- the argument matrix- Returns:
- the result of the addition
-