fixed charact with wrong encoding
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1157739 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
71df2effec
commit
e7df350a55
|
@ -1005,7 +1005,7 @@ public class FastMath {
|
|||
* For x between 0 and 1, returns exp(x), uses extended precision
|
||||
* @param x argument of exponential
|
||||
* @param result placeholder where to place exp(x) split in two terms
|
||||
* for extra precision (i.e. exp(x) = result[0] ° result[1]
|
||||
* for extra precision (i.e. exp(x) = result[0] + result[1]
|
||||
* @return exp(x)
|
||||
*/
|
||||
private static double slowexp(final double x, final double result[]) {
|
||||
|
|
Loading…
Reference in New Issue