From d70c56632085ccc60df1e5bc6ce4c4bbac63ea30 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Fri, 1 Jan 2016 15:11:57 +0100 Subject: [PATCH] Javadoc. --- .../math3/geometry/euclidean/threed/FieldRotation.java | 4 ++-- .../commons/math3/ode/nonstiff/AdamsFieldIntegrator.java | 2 +- .../math3/ode/nonstiff/AdamsNordsieckFieldTransformer.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/FieldRotation.java b/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/FieldRotation.java index 51aeadc09..4e2278bd8 100644 --- a/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/FieldRotation.java +++ b/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/FieldRotation.java @@ -112,7 +112,7 @@ public class FieldRotation> 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 axis, final T angle) @@ -1401,7 +1401,7 @@ public class FieldRotation> implements Serializabl /** Apply the inverse of the instance to another rotation. *

* Calling this method is equivalent to call - * {@link #composeInverse(FieldRotation, RotationConvention) + * {@link #composeInverse(FieldRotation, RotationConvention) * composeInverse(r, RotationConvention.VECTOR_OPERATOR)}. *

* @param r rotation to apply the rotation to diff --git a/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsFieldIntegrator.java b/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsFieldIntegrator.java index e1f9b6d9a..fcd939748 100644 --- a/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsFieldIntegrator.java +++ b/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsFieldIntegrator.java @@ -118,7 +118,7 @@ public abstract class AdamsFieldIntegrator> extend * @param highOrder high order scaled derivatives * (h2/2 y'', ... hk/k! y(k)) * @return updated high order derivatives - * @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowFieldMatrix) + * @see #updateHighOrderDerivativesPhase2(RealFieldElement[], RealFieldElement[], Array2DRowFieldMatrix) */ public Array2DRowFieldMatrix updateHighOrderDerivativesPhase1(final Array2DRowFieldMatrix highOrder) { return transformer.updateHighOrderDerivativesPhase1(highOrder); diff --git a/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsNordsieckFieldTransformer.java b/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsNordsieckFieldTransformer.java index 5fa7c7bec..b8f872bce 100644 --- a/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsNordsieckFieldTransformer.java +++ b/src/main/java/org/apache/commons/math3/ode/nonstiff/AdamsNordsieckFieldTransformer.java @@ -328,7 +328,7 @@ public class AdamsNordsieckFieldTransformer> { * @param highOrder high order scaled derivatives * (h2/2 y'', ... hk/k! y(k)) * @return updated high order derivatives - * @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowFieldMatrix) + * @see #updateHighOrderDerivativesPhase2(RealFieldElement[], RealFieldElement[], Array2DRowFieldMatrix) */ public Array2DRowFieldMatrix updateHighOrderDerivativesPhase1(final Array2DRowFieldMatrix highOrder) { return update.multiply(highOrder);