OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DerivativeException
(Results
1 - 25
of
36
) sorted by null
1
2
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
StepInterpolatorWithJacobians.java
22
import org.apache.commons.math.ode.
DerivativeException
;
93
* @throws
DerivativeException
if this call induces an automatic
96
double[] getInterpolatedY() throws
DerivativeException
;
107
* @throws
DerivativeException
if this call induces an automatic
110
double[][] getInterpolatedDyDy0() throws
DerivativeException
;
121
* @throws
DerivativeException
if this call induces an automatic
124
double[][] getInterpolatedDyDp() throws
DerivativeException
;
133
* @throws
DerivativeException
if this call induces an automatic
136
double[] getInterpolatedYDot() throws
DerivativeException
;
147
* @throws
DerivativeException
if this call induces an automati
[
all
...]
ODEWithJacobians.java
20
import org.apache.commons.math.ode.
DerivativeException
;
48
* @throws
DerivativeException
this exception is propagated to the caller if the
52
throws
DerivativeException
;
StepHandlerWithJacobians.java
20
import org.apache.commons.math.ode.
DerivativeException
;
92
* @throws
DerivativeException
this exception is propagated to the
95
void handleStep(StepInterpolatorWithJacobians interpolator, boolean isLast) throws
DerivativeException
;
FirstOrderIntegratorWithJacobians.java
29
import org.apache.commons.math.ode.
DerivativeException
;
212
* @throws
DerivativeException
this exception is propagated to the caller if
218
throws
DerivativeException
, IntegratorException {
401
throws
DerivativeException
{
409
throw new
DerivativeException
(new MaxEvaluationsExceededException(maxEvaluations));
491
public void computeDerivatives(double t, double[] y, double[] yDot) throws
DerivativeException
{
505
throws
DerivativeException
{
512
throw new
DerivativeException
(new MaxEvaluationsExceededException(maxEvaluations));
573
throws
DerivativeException
{
658
public double[] getInterpolatedY() throws
DerivativeException
{
[
all
...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
StepInterpolator.java
22
import org.apache.commons.math.ode.
DerivativeException
;
92
* @exception
DerivativeException
if user code called from step interpolator
95
double[] getInterpolatedState() throws
DerivativeException
;
104
* @exception
DerivativeException
if user code called from step interpolator
108
double[] getInterpolatedDerivatives() throws
DerivativeException
;
126
* @exception
DerivativeException
if user code called from step interpolator
130
StepInterpolator copy() throws
DerivativeException
;
FixedStepHandler.java
20
import org.apache.commons.math.ode.
DerivativeException
;
58
* @throws
DerivativeException
if some error condition is encountered
60
void handleStep(double t, double[] y, double[] yDot, boolean isLast) throws
DerivativeException
;
StepHandler.java
20
import org.apache.commons.math.ode.
DerivativeException
;
73
* @exception
DerivativeException
if user code called from step interpolator
76
void handleStep(StepInterpolator interpolator, boolean isLast) throws
DerivativeException
;
AbstractStepInterpolator.java
24
import org.apache.commons.math.ode.
DerivativeException
;
200
public StepInterpolator copy() throws
DerivativeException
{
331
* @throws
DerivativeException
this exception is propagated to the caller if the
336
throws
DerivativeException
;
339
public double[] getInterpolatedState() throws
DerivativeException
{
354
public double[] getInterpolatedDerivatives() throws
DerivativeException
{
406
* @throws
DerivativeException
this exception is propagated to the
410
throws
DerivativeException
{
420
* @throws
DerivativeException
this exception is propagated to the
424
throws
DerivativeException
{
[
all
...]
StepNormalizer.java
20
import org.apache.commons.math.ode.
DerivativeException
;
112
* @throws
DerivativeException
this exception is propagated to the
116
throws
DerivativeException
{
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
SecondOrderDifferentialEquations.java
20
import org.apache.commons.math.ode.
DerivativeException
;
63
* @throws
DerivativeException
this user-defined exception should be used if an error is
67
throws
DerivativeException
;
DerivativeException.java
31
public class
DerivativeException
extends MathException {
41
public
DerivativeException
(final String specifier, final Object ... parts) {
51
public
DerivativeException
(final Localizable specifier, final Object ... parts) {
58
public
DerivativeException
(final Throwable cause) {
FirstOrderDifferentialEquations.java
60
* @throws
DerivativeException
this user-defined exception should be used if an error is
64
throws
DerivativeException
;
SecondOrderIntegrator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
52
* @throws
DerivativeException
this exception is propagated to the caller if the
58
throws
DerivativeException
, IntegratorException;
FirstOrderIntegrator.java
53
* @throws
DerivativeException
this exception is propagated to the caller if
59
double t, double[] y) throws
DerivativeException
, IntegratorException;
FirstOrderConverter.java
20
import org.apache.commons.math.ode.
DerivativeException
;
100
* @throws
DerivativeException
this exception is propagated to the caller if the
104
throws
DerivativeException
{
MultistepIntegrator.java
21
import org.apache.commons.math.ode.
DerivativeException
;
209
* @throws
DerivativeException
this exception is propagated to the caller if
213
throws
DerivativeException
, IntegratorException {
228
} catch (
DerivativeException
mue) {
325
throws
DerivativeException
{
370
extends
DerivativeException
{
397
throws
DerivativeException
{
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
EulerStepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
82
throws
DerivativeException
{
MidpointStepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
84
throws
DerivativeException
{
AdamsIntegrator.java
21
import org.apache.commons.math.ode.
DerivativeException
;
88
throws
DerivativeException
, IntegratorException;
ClassicalRungeKuttaStepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
86
throws
DerivativeException
{
ThreeEighthesStepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
89
throws
DerivativeException
{
GillStepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
94
throws
DerivativeException
{
HighamHall54StepInterpolator.java
20
import org.apache.commons.math.ode.
DerivativeException
;
74
throws
DerivativeException
{
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
CombinedEventsManager.java
26
import org.apache.commons.math.ode.
DerivativeException
;
119
* @exception
DerivativeException
if the interpolator fails to
124
throws
DerivativeException
, IntegratorException {
172
if ((cause != null) && (cause instanceof
DerivativeException
)) {
173
throw (
DerivativeException
) cause;
EventState.java
25
import org.apache.commons.math.ode.
DerivativeException
;
183
} catch (
DerivativeException
mue) {
192
* @exception
DerivativeException
if the interpolator fails to
199
throws
DerivativeException
, EventException, ConvergenceException {
235
} catch (
DerivativeException
e) {
258
throw new
DerivativeException
(ex);
273
throw new
DerivativeException
(ex);
382
/** Local exception for embedding
DerivativeException
. */
389
private final
DerivativeException
derivativeException
;
[
all
...]
Completed in 656 milliseconds
1
2