MATH-989
Update "changes.xml". Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1512547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f1467e45ab
commit
11b1474cec
|
@ -51,6 +51,10 @@ If the output is not quite correct, check for invisible trailing spaces!
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="x.y" date="TBD" description="TBD">
|
<release version="x.y" date="TBD" description="TBD">
|
||||||
|
<action dev="erans" type="add" issue="MATH-989">
|
||||||
|
"BicubicSplineInterpolatingFunction": added method "isValidPoint" that
|
||||||
|
checks whether a point is within the interpolation range.
|
||||||
|
</action>
|
||||||
<action dev="erans" type="fix" issue="MATH-1021" due-to="Brian Bloniarz">
|
<action dev="erans" type="fix" issue="MATH-1021" due-to="Brian Bloniarz">
|
||||||
Fixed overflow in "HypergeometricDistribution".
|
Fixed overflow in "HypergeometricDistribution".
|
||||||
</action>
|
</action>
|
||||||
|
|
|
@ -178,6 +178,7 @@ public class BicubicSplineInterpolatingFunction
|
||||||
* @param x First coordinate.
|
* @param x First coordinate.
|
||||||
* @param y Second coordinate.
|
* @param y Second coordinate.
|
||||||
* @return {@code true} if (x, y) is a valid point.
|
* @return {@code true} if (x, y) is a valid point.
|
||||||
|
* @since 3.3
|
||||||
*/
|
*/
|
||||||
public boolean isValidPoint(double x, double y) {
|
public boolean isValidPoint(double x, double y) {
|
||||||
if (x < xval[0] ||
|
if (x < xval[0] ||
|
||||||
|
|
Loading…
Reference in New Issue