OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OutOfRangeException
(Results
1 - 5
of
5
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
OutOfRangeException.java
27
public class
OutOfRangeException
extends MathIllegalNumberException {
44
public
OutOfRangeException
(Number wrong,
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianParametersGuesser.java
25
import org.apache.commons.math.exception.
OutOfRangeException
;
96
} catch (
OutOfRangeException
e) {
151
* @throws
OutOfRangeException
if specified <code>y</code> is not within the
155
int startIdx, int idxStep, double y) throws
OutOfRangeException
{
186
* @throws
OutOfRangeException
if specified <code>y</code> is not within the
191
throws
OutOfRangeException
{
211
throw new
OutOfRangeException
(y, minY, maxY);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java
21
import org.apache.commons.math.exception.
OutOfRangeException
;
212
* @throws
OutOfRangeException
if {@code index} is not between
218
throw new
OutOfRangeException
(index, 0, totalSize);
254
* @throws
OutOfRangeException
if a value of {@code c} is not in
258
public int getCount(int ... c) throws
OutOfRangeException
{
267
throw new
OutOfRangeException
(index, 0, size[i] - 1);
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BicubicSplineInterpolatingFunction.java
23
import org.apache.commons.math.exception.
OutOfRangeException
;
162
throw new
OutOfRangeException
(x, xval[0], xval[xval.length - 1]);
166
throw new
OutOfRangeException
(y, yval[0], yval[yval.length - 1]);
239
throw new
OutOfRangeException
(x, xval[0], xval[xval.length - 1]);
243
throw new
OutOfRangeException
(y, yval[0], yval[yval.length - 1]);
392
throw new
OutOfRangeException
(x, 0, 1);
395
throw new
OutOfRangeException
(y, 0, 1);
TricubicSplineInterpolatingFunction.java
22
import org.apache.commons.math.exception.
OutOfRangeException
;
312
throw new
OutOfRangeException
(x, xval[0], xval[xval.length - 1]);
316
throw new
OutOfRangeException
(y, yval[0], yval[yval.length - 1]);
320
throw new
OutOfRangeException
(z, zval[0], zval[zval.length - 1]);
451
throw new
OutOfRangeException
(x, 0, 1);
454
throw new
OutOfRangeException
(y, 0, 1);
457
throw new
OutOfRangeException
(z, 0, 1);
Completed in 5717 milliseconds