This commit is contained in:
Gilles 2018-03-18 02:22:03 +01:00
parent b048757035
commit c5512b7d69
2 changed files with 2 additions and 8 deletions

View File

@ -37,10 +37,7 @@ public class ComplexUtils {
/**
* Creates a complex number from the given polar representation.
* <p>
* If either {@code r} or {@code theta} is NaN, or {@code theta} is
* infinite, {@link Complex#NaN} is returned.
* <p>
*
* 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.

View File

@ -26,10 +26,7 @@ import org.apache.commons.math4.exception.NotStrictlyPositiveException;
* <p>
* 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
*/