Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B463E18E99 for ; Wed, 6 Jan 2016 13:52:18 +0000 (UTC) Received: (qmail 32320 invoked by uid 500); 6 Jan 2016 13:51:22 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 30159 invoked by uid 500); 6 Jan 2016 13:51:03 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 24613 invoked by uid 99); 6 Jan 2016 13:50:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jan 2016 13:50:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EDF03E185D; Wed, 6 Jan 2016 13:50:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: luc@apache.org To: commits@commons.apache.org Date: Wed, 06 Jan 2016 13:51:03 -0000 Message-Id: In-Reply-To: <90d1eabb6ffc458599718eee461e57f5@git.apache.org> References: <90d1eabb6ffc458599718eee461e57f5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [47/50] [abbrv] [math] Javadoc. 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 Authored: Wed Jan 6 14:20:29 2016 +0100 Committer: Luc Maisonobe 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> 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 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> 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); 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> { * @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);