From c5512b7d690ea77775de3790b1760a62540e06bc Mon Sep 17 00:00:00 2001 From: Gilles Date: Sun, 18 Mar 2018 02:22:03 +0100 Subject: [PATCH] Javadoc. --- .../java/org/apache/commons/math4/complex/ComplexUtils.java | 5 +---- .../org/apache/commons/math4/transform/RealTransformer.java | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/math4/complex/ComplexUtils.java b/src/main/java/org/apache/commons/math4/complex/ComplexUtils.java index 16022cd28..57f59da97 100644 --- a/src/main/java/org/apache/commons/math4/complex/ComplexUtils.java +++ b/src/main/java/org/apache/commons/math4/complex/ComplexUtils.java @@ -37,10 +37,7 @@ public class ComplexUtils { /** * Creates a complex number from the given polar representation. - *

- * If either {@code r} or {@code theta} is NaN, or {@code theta} is - * infinite, {@link Complex#NaN} is returned. - *

+ * * If {@code r} is infinite and {@code theta} is finite, infinite or NaN * values may be returned in parts of the result, following the rules for * double arithmetic. diff --git a/src/main/java/org/apache/commons/math4/transform/RealTransformer.java b/src/main/java/org/apache/commons/math4/transform/RealTransformer.java index a53dfad7e..f452b07f1 100644 --- a/src/main/java/org/apache/commons/math4/transform/RealTransformer.java +++ b/src/main/java/org/apache/commons/math4/transform/RealTransformer.java @@ -26,10 +26,7 @@ import org.apache.commons.math4.exception.NotStrictlyPositiveException; *

* Such transforms include {@link FastSineTransformer sine transform}, * {@link FastCosineTransformer cosine transform} or {@link - * FastHadamardTransformer Hadamard transform}. {@link FastFourierTransformer - * Fourier transform} is of a different kind and does not implement this - * interface since it produces {@link org.apache.commons.math4.complex.Complex} - * results instead of real ones. + * FastHadamardTransformer Hadamard transform}. * * @since 2.0 */