This commit is contained in:
Luc Maisonobe 2016-01-01 15:11:57 +01:00
parent cc606e54ca
commit d70c566320
3 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ public class FieldRotation<T extends RealFieldElement<T>> implements Serializabl
* @param angle rotation angle.
* @exception MathIllegalArgumentException if the axis norm is zero
* @deprecated as of 3.6, replaced with {@link
* #FieldRotation(FieldVector3D, RealFieldElement, RotationConvention)
* #FieldRotation(FieldVector3D, RealFieldElement, RotationConvention)}
*/
@Deprecated
public FieldRotation(final FieldVector3D<T> axis, final T angle)
@ -1401,7 +1401,7 @@ public class FieldRotation<T extends RealFieldElement<T>> implements Serializabl
/** Apply the inverse of the instance to another rotation.
* <p>
* Calling this method is equivalent to call
* {@link #composeInverse(FieldRotation<T>, RotationConvention)
* {@link #composeInverse(FieldRotation, RotationConvention)
* composeInverse(r, RotationConvention.VECTOR_OPERATOR)}.
* </p>
* @param r rotation to apply the rotation to

View File

@ -118,7 +118,7 @@ public abstract class AdamsFieldIntegrator<T extends RealFieldElement<T>> extend
* @param highOrder high order scaled derivatives
* (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
* @return updated high order derivatives
* @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowFieldMatrix)
* @see #updateHighOrderDerivativesPhase2(RealFieldElement[], RealFieldElement[], Array2DRowFieldMatrix)
*/
public Array2DRowFieldMatrix<T> updateHighOrderDerivativesPhase1(final Array2DRowFieldMatrix<T> highOrder) {
return transformer.updateHighOrderDerivativesPhase1(highOrder);

View File

@ -328,7 +328,7 @@ public class AdamsNordsieckFieldTransformer<T extends RealFieldElement<T>> {
* @param highOrder high order scaled derivatives
* (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
* @return updated high order derivatives
* @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowFieldMatrix)
* @see #updateHighOrderDerivativesPhase2(RealFieldElement[], RealFieldElement[], Array2DRowFieldMatrix)
*/
public Array2DRowFieldMatrix<T> updateHighOrderDerivativesPhase1(final Array2DRowFieldMatrix<T> highOrder) {
return update.multiply(highOrder);