HomeSort by relevance Sort by last modified time
    Searched refs:integrate (Results 1 - 25 of 43) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
FirstOrderIntegrator.java 38 /** Integrate the differential equations up to the given time.
43 * @param equations differential equations to integrate
57 double integrate (FirstOrderDifferentialEquations equations, method in interface:FirstOrderIntegrator
SecondOrderIntegrator.java 38 /** Integrate the differential equations up to the given time
39 * @param equations differential equations to integrate
55 void integrate(SecondOrderDifferentialEquations equations, method in interface:SecondOrderIntegrator
MultistepIntegrator.java 226 starter.integrate(new CountingDifferentialEquations(y0.length),
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
UnivariateRealIntegrator.java 63 * Integrate the function in the given interval.
74 * @deprecated replaced by {@link #integrate(UnivariateRealFunction, double, double)}
78 double integrate(double min, double max) method in interface:UnivariateRealIntegrator
82 * Integrate the function in the given interval.
94 double integrate(UnivariateRealFunction f, double min, double max) method in interface:UnivariateRealIntegrator
RombergIntegrator.java 44 * @param f function to integrate
46 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
62 public double integrate(final double min, final double max) method in class:RombergIntegrator
64 return integrate(f, min, max);
68 public double integrate(final UnivariateRealFunction f, final double min, final double max) method in class:RombergIntegrator
SimpsonIntegrator.java 43 * @param f function to integrate
45 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
61 public double integrate(final double min, final double max) method in class:SimpsonIntegrator
63 return integrate(f, min, max);
67 public double integrate(final UnivariateRealFunction f, final double min, final double max) method in class:SimpsonIntegrator
TrapezoidIntegrator.java 45 * @param f function to integrate
47 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
63 * should only be called by API <code>integrate()</code> in the package.
101 public double integrate(final double min, final double max) method in class:TrapezoidIntegrator
103 return integrate(f, min, max);
107 public double integrate(final UnivariateRealFunction f, final double min, final double max) method in class:TrapezoidIntegrator
LegendreGaussIntegrator.java 32 * accurately integrate functions with few functions evaluations. A
34 * integrate exactly 2n-1 degree polynomials.
159 public double integrate(final double min, final double max) method in class:LegendreGaussIntegrator
161 return integrate(f, min, max);
165 public double integrate(final UnivariateRealFunction f, final double min, final double max) method in class:LegendreGaussIntegrator
222 // integrate over all elementary steps
  /external/tensorflow/tensorflow/contrib/integrate/
__init__.py 18 See the @{$python/contrib.integrate} guide.
28 from tensorflow.contrib.integrate.python.ops.odes import *
  /hardware/intel/img/hwcomposer/merrifield/test/
Android.mk 25 # to integrate with auto-test framework.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsIntegrator.java 85 public abstract double integrate(final FirstOrderDifferentialEquations equations, method in class:AdamsIntegrator
AdamsBashforthIntegrator.java 188 public double integrate(final FirstOrderDifferentialEquations equations, method in class:AdamsBashforthIntegrator
RungeKuttaIntegrator.java 95 public double integrate(final FirstOrderDifferentialEquations equations, method in class:RungeKuttaIntegrator
AdamsMoultonIntegrator.java 205 public double integrate(final FirstOrderDifferentialEquations equations, method in class:AdamsMoultonIntegrator
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_callbacks.py 167 # The function prototype called by 'integrate': double func(double);
170 # The integrate function itself, exposed from the _ctypes_test dll
171 integrate = dll.integrate
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
178 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_callbacks.py 167 # The function prototype called by 'integrate': double func(double);
170 # The integrate function itself, exposed from the _ctypes_test dll
171 integrate = dll.integrate
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
178 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 167 # The function prototype called by 'integrate': double func(double);
170 # The integrate function itself, exposed from the _ctypes_test dll
171 integrate = dll.integrate
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
178 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 167 # The function prototype called by 'integrate': double func(double);
170 # The integrate function itself, exposed from the _ctypes_test dll
171 integrate = dll.integrate
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
178 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /packages/apps/TimeZoneData/testing/xts/
Android.mk 18 # OEMs can include this as a "_STATIC_" dependency and anything else needed to integrate with their
  /prebuilts/go/darwin-x86/src/mime/
example_test.go 39 // Real use would integrate with packages such
78 // Real use would integrate with packages such
  /prebuilts/go/linux-x86/src/mime/
example_test.go 39 // Real use would integrate with packages such
78 // Real use would integrate with packages such
  /external/python/cpython2/Lib/ctypes/test/
test_callbacks.py 169 # The function prototype called by 'integrate': double func(double);
172 # The integrate function itself, exposed from the _ctypes_test dll
173 integrate = dll.integrate
174 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
175 integrate.restype = c_double
180 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /external/python/cpython3/Lib/ctypes/test/
test_callbacks.py 163 # The function prototype called by 'integrate': double func(double);
166 # The integrate function itself, exposed from the _ctypes_test dll
167 integrate = dll.integrate
168 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
169 integrate.restype = c_double
174 result = integrate(0.0, 1.0, CALLBACK(func), 10)
  /external/libxcam/modules/isp/
x3a_analyzer_aiq.cpp 230 ret = _aiq_compositor->integrate (first_results);
231 XCAM_FAIL_RETURN (WARNING, ret == XCAM_RETURN_NO_ERROR, ret, "AIQ configure_3a failed on integrate results");
259 ret = _aiq_compositor->integrate (results);
260 XCAM_FAIL_RETURN (WARNING, ret == XCAM_RETURN_NO_ERROR, ret, "AIQ integrate 3A results failed");
  /external/tensorflow/tensorflow/contrib/integrate/python/ops/
odes.py 322 """Take an adaptive Runge-Kutta step to integrate the ODE."""
417 """Integrate a system of ordinary differential equations.
431 tf.contrib.integrate.odeint(lambda y, _: -y, 1.0, [0, 1, 2])
440 method of `scipy.integrate.ode` and MATLAB's `ode45`.
474 * max_num_steps: integer maximum number of integrate steps between time
533 def integrate(self, evol_func, y0, time_grid): member in class:_FixedGridIntegrator
613 return _MidpointFixedGridIntegrator().integrate(func, y0, t)
615 return _RK4FixedGridIntegrator().integrate(func, y0, t)

Completed in 473 milliseconds

1 2