MATH-1416: Depend on "Commons Numbers".

This commit is contained in:
Gilles 2018-02-28 02:07:37 +01:00
parent c965f1c7fc
commit 0f25f11ce6
2 changed files with 8 additions and 2 deletions

View File

@ -377,6 +377,12 @@
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-numbers-complex</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-numbers-gamma</artifactId>

View File

@ -17,14 +17,14 @@
package org.apache.commons.math4.linear;
import org.apache.commons.math4.complex.Complex;
import org.apache.commons.numbers.complex.Complex;
import org.apache.commons.numbers.core.Precision;
import org.apache.commons.math4.exception.DimensionMismatchException;
import org.apache.commons.math4.exception.MathArithmeticException;
import org.apache.commons.math4.exception.MathUnsupportedOperationException;
import org.apache.commons.math4.exception.MaxCountExceededException;
import org.apache.commons.math4.exception.util.LocalizedFormats;
import org.apache.commons.math4.util.FastMath;
import org.apache.commons.numbers.core.Precision;
/**
* Calculates the eigen decomposition of a real matrix.