Home
last modified time | relevance | path

Searched full:integrate (Results 1 – 25 of 288) sorted by relevance

12345678910>>...12

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
DTrapezoidIntegrator.java45 * @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) in integrate() method in TrapezoidIntegrator
103 return integrate(f, min, max); in integrate()
107 public double integrate(final UnivariateRealFunction f, final double min, final double max) in integrate() method in TrapezoidIntegrator
DUnivariateRealIntegrator.java63 * Integrate the function in the given interval.
74 * @deprecated replaced by {@link #integrate(UnivariateRealFunction, double, double)}
78 double integrate(double min, double max) in integrate() method
82 * Integrate the function in the given interval.
94 double integrate(UnivariateRealFunction f, double min, double max) in integrate() method
DSimpsonIntegrator.java43 * @param f function to integrate
45 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
61 public double integrate(final double min, final double max) in integrate() method in SimpsonIntegrator
63 return integrate(f, min, max); in integrate()
67 public double integrate(final UnivariateRealFunction f, final double min, final double max) in integrate() method in SimpsonIntegrator
DRombergIntegrator.java44 * @param f function to integrate
46 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
62 public double integrate(final double min, final double max) in integrate() method in RombergIntegrator
64 return integrate(f, min, max); in integrate()
68 public double integrate(final UnivariateRealFunction f, final double min, final double max) in integrate() method in RombergIntegrator
DLegendreGaussIntegrator.java32 * 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) in integrate() method in LegendreGaussIntegrator
161 return integrate(f, min, max); in integrate()
165 public double integrate(final UnivariateRealFunction f, final double min, final double max) in integrate() method in LegendreGaussIntegrator
222 // integrate over all elementary steps in stage()
DUnivariateRealIntegratorImpl.java53 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
66 * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
/external/python/cpython3/Lib/ctypes/test/
Dtest_callbacks.py163 # 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/python/cpython2/Lib/ctypes/test/
Dtest_callbacks.py169 # 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/tensorflow/tensorflow/contrib/integrate/
D__init__.py19 [Contrib Integrate](https://tensorflow.org/api_guides/python/contrib.integrate)
31 from tensorflow.contrib.integrate.python.ops.odes import *
DREADME.md3 TensorFlow equivalents to the routines provided by `scipy.integrate`. Currently
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DSecondOrderIntegrator.java38 /** Integrate the differential equations up to the given time
39 * @param equations differential equations to integrate
55 void integrate(SecondOrderDifferentialEquations equations, in integrate() method
DFirstOrderIntegrator.java38 /** Integrate the differential equations up to the given time.
43 * @param equations differential equations to integrate
57 double integrate (FirstOrderDifferentialEquations equations, in integrate() method
DODEIntegrator.java98 * calls to <code>integrate</code>.</p>
109 * calls to <code>integrate</code>.</p>
132 * <code>integrate</code> method. It is 0 if the method has not been called yet.
Dpackage.html75 {@link org.apache.commons.math.ode.FirstOrderIntegrator#integrate
76 FirstOrderIntegrator.integrate} method. The second one should be used
84 org.apache.commons.math.ode.FirstOrderIntegrator#integrate
85 FirstOrderIntegrator.integrate} method. The user object will be called
/external/libxcam/modules/isp/
Dx3a_analyzer_aiq.cpp230 ret = _aiq_compositor->integrate (first_results); in configure_3a()
231 …RETURN (WARNING, ret == XCAM_RETURN_NO_ERROR, ret, "AIQ configure_3a failed on integrate results"); in configure_3a()
259 ret = _aiq_compositor->integrate (results); in post_3a_analyze()
260 XCAM_FAIL_RETURN (WARNING, ret == XCAM_RETURN_NO_ERROR, ret, "AIQ integrate 3A results failed"); in post_3a_analyze()
/external/ltp/testcases/realtime/doc/
DTODO6 o Add/integrate network tests
7 o Add/integrate load tests
/external/elfutils/tests/
Drun-attr-integrate-skel.sh24 testrun_compare ${abs_builddir}/attr-integrate-skel testfile-splitdwarf-4 << EOF
38 testrun_compare ${abs_builddir}/attr-integrate-skel testfile-splitdwarf-5 << EOF
/external/tensorflow/tensorflow/python/compiler/tensorrt/
DREADME.md30 [Verified Models](https://docs.nvidia.com/deeplearning/dgx/integrate-tf-trt/index.html#verified-mod…
34 [TF-TRT documentation](https://docs.nvidia.com/deeplearning/dgx/integrate-tf-trt/index.html)
/external/tensorflow/tensorflow/contrib/integrate/python/ops/
Dodes.py335 """Take an adaptive Runge-Kutta step to integrate the ODE."""
430 """Integrate a system of ordinary differential equations.
444 tf.contrib.integrate.odeint(lambda y, _: -y, 1.0, [0, 1, 2])
453 method of `scipy.integrate.ode` and MATLAB's `ode45`.
487 * max_num_steps: integer maximum number of integrate steps between time
547 def integrate(self, evol_func, y0, time_grid, dt_grid, steps_on_intervals): member in _FixedGridIntegrator
698 return _MidpointFixedGridIntegrator().integrate(func, y0, t, dt,
701 return _RK4FixedGridIntegrator().integrate(func, y0, t, dt,
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DHttpsURLConnectionImpl.java64 // BEGIN Android-added: Integrate upstream change: Let setSSLSocketFactory(null) throw. in setSSLSocketFactory()
72 // END Android-added: Integrate upstream change: Let setSSLSocketFactory(null) throw. in setSSLSocketFactory()
/external/grpc-grpc/src/objective-c/
DREADME.md12 - [Integrate a proto library in your project](#cocoapods)
18 - [Integrate the generated gRPC library without using Cocoapods](#no-cocoapods)
27 ## Integrate a proto library in your project
203 ### Integrate the generated gRPC library without using Cocoapods
/external/okhttp/repackaged/okhttp-urlconnection/src/main/java/com/android/okhttp/internal/huc/
DHttpsURLConnectionImpl.java69 // BEGIN Android-added: Integrate upstream change: Let setSSLSocketFactory(null) throw. in setSSLSocketFactory()
77 // END Android-added: Integrate upstream change: Let setSSLSocketFactory(null) throw. in setSSLSocketFactory()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
DFirstOrderIntegratorWithJacobians.java60 /** Raw equations to integrate. */
188 /** Integrate the differential equations and the variational equations up to the given time.
215 public double integrate(final double t0, final double[] y0, final double[][] dY0dP, in integrate() method in FirstOrderIntegratorWithJacobians
251 // integrate the compound state variational equations in integrate()
253 final double stopTime = integrator.integrate(new MappingWrapper(), t0, z, t, z); in integrate()
295 * calls to <code>integrate</code>.</p>
308 * calls to <code>integrate</code>.</p>
337 * <code>integrate</code> method. It is 0 if the method has not been called yet.
/external/mesa3d/src/glx/
Dapplegl_glx.c134 /* TODO: Integrate this with apple_glx_create_context and make in applegl_create_context()
149 /* TODO: darwin: Integrate with above to do indirect */ in applegl_create_context()
/external/capstone/contrib/
DREADME2 Code here might be helpful for those who want to integrate Capstone into

12345678910>>...12