OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZeroException
(Results
1 - 6
of
6
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
ZeroException.java
28
public class
ZeroException
extends MathIllegalNumberException {
36
public
ZeroException
() {
45
public
ZeroException
(Localizable specific) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
ParametricGaussianFunction.java
24
import org.apache.commons.math.exception.
ZeroException
;
80
* @throws
ZeroException
if <code>parameters</code> values are
83
public double value(double x, double[] parameters) throws
ZeroException
{
121
* @throws
ZeroException
if <code>parameters</code> values are
124
public double[] gradient(double x, double[] parameters) throws
ZeroException
{
150
* @throws
ZeroException
if <code>parameters[3]</code>
153
private void validateParameters(double[] parameters) throws
ZeroException
{
161
throw new
ZeroException
();
GaussianDerivativeFunction.java
25
import org.apache.commons.math.exception.
ZeroException
;
67
throw new
ZeroException
();
91
throw new
ZeroException
();
GaussianFunction.java
26
import org.apache.commons.math.exception.
ZeroException
;
79
throw new
ZeroException
();
105
throw new
ZeroException
();
GaussianParametersGuesser.java
26
import org.apache.commons.math.exception.
ZeroException
;
157
throw new
ZeroException
();
193
throw new
ZeroException
();
/libcore/jsr166-tests/src/test/java/jsr166/
CompletableFutureTest.java
[
all
...]
Completed in 172 milliseconds