Javadoc.
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/f0a39a86 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/f0a39a86 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/f0a39a86 Branch: refs/heads/master Commit: f0a39a86864410beb84cf8898ea70f9fab7420e0 Parents: 8361fd7 Author: Luc Maisonobe <[email protected]> Authored: Wed Jan 6 14:20:29 2016 +0100 Committer: Luc Maisonobe <[email protected]> Committed: Wed Jan 6 14:20:29 2016 +0100 ---------------------------------------------------------------------- .../commons/math4/geometry/euclidean/threed/FieldRotation.java | 4 ++-- .../apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java | 2 +- .../math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/f0a39a86/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/FieldRotation.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/FieldRotation.java b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/FieldRotation.java index 4c7c888..2dc6933 100644 --- a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/FieldRotation.java +++ b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/FieldRotation.java @@ -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 http://git-wip-us.apache.org/repos/asf/commons-math/blob/f0a39a86/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java index 9039ca1..cb2061b 100644 --- a/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java +++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsFieldIntegrator.java @@ -119,7 +119,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); http://git-wip-us.apache.org/repos/asf/commons-math/blob/f0a39a86/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java b/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java index 93ec85e..c1e5bee 100644 --- a/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java +++ b/src/main/java/org/apache/commons/math4/ode/nonstiff/AdamsNordsieckFieldTransformer.java @@ -327,7 +327,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);
