Simplified javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1180315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-10-08 05:13:16 +00:00
parent 1ae0c80950
commit 8c1df65ae6
1 changed files with 2 additions and 5 deletions

View File

@ -21,11 +21,8 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
import org.apache.commons.math.util.FastMath;
/**
* Sinc function, defined by <pre><code>
*
* sinc(x) = 1 if abs(x) < 1e-9;
* sin(x) / x; otherwise
* </code></pre>
* The sinc function, {code sin(x)/x}.
* Returns {code 1} if {code |x| < 1e-9}.
*
* @version $Id$
* @since 3.0