Home
last modified time | relevance | path

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

12345678910>>...48

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/integrate/
Dintegrate.hpp3 boost/numeric/odeint/integrate/integrate.hpp
25 #include <boost/numeric/odeint/integrate/null_observer.hpp>
26 #include <boost/numeric/odeint/integrate/integrate_adaptive.hpp>
45 integrate( System system , State &start_state , Time start_time , Time end_time , Time dt , Observe… in integrate() function
53 integrate( System system , State &start_state , Time start_time , Time end_time , Time dt , Observe… in integrate() function
66 size_t integrate( System system , State &start_state , Time start_time , Time end_time , Time dt ) in integrate() function
68 return integrate( system , start_state , start_time , end_time , dt , null_observer() ); in integrate()
72 size_t integrate( System system , State &start_state , Time start_time , Time end_time , Time dt ) in integrate() function
74 … return integrate< Value >( system , start_state , start_time , end_time , dt , null_observer() ); in integrate()
80 …* \fn integrate( System system , State &start_state , Time start_time , Time end_time , Time dt , …
[all …]
Dmax_step_checker.hpp3 boost/numeric/odeint/integrate/max_step_checker.hpp
32 * \brief A class for performing overflow checks on the step count in integrate functions.
34 * Provide an instance of this class to integrate functions if you want to throw a runtime error if
35 * too many steps are performed without progress during the integrate routine.
82 * Used internally within the dense output stepper and integrate routines.
Dintegrate_const.hpp3 boost/numeric/odeint/integrate/integrate_const.hpp
25 #include <boost/numeric/odeint/integrate/null_observer.hpp>
26 #include <boost/numeric/odeint/integrate/check_adapter.hpp>
27 #include <boost/numeric/odeint/integrate/detail/integrate_const.hpp>
28 #include <boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/analysis/integration/gauss/
H A DGaussIntegratorFactory.java42 * {@link GaussIntegrator#integrate(org.apache.commons.math3.analysis.UnivariateFunction)
43 * integrate} method will perform an integration on the natural interval
56 * {@link GaussIntegrator#integrate(org.apache.commons.math3.analysis.UnivariateFunction)
57 * integrate} method will perform an integration on the given interval.
76 * {@link GaussIntegrator#integrate(org.apache.commons.math3.analysis.UnivariateFunction)
77 * integrate} method will perform an integration on the natural interval
91 * {@link GaussIntegrator#integrate(org.apache.commons.math3.analysis.UnivariateFunction)
92 * integrate} method will perform an integration on the given interval.
111 … * {@link SymmetricGaussIntegrator#integrate(org.apache.commons.math3.analysis.UnivariateFunction)
112 * integrate} method will perform a weighted integration on the interval
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/
Ddetails_integrate_functions.qbk14 [section Integrate functions]
16 Integrate functions perform the time evolution of a given ODE from some
21 There are five different integrate functions which have different strategies on when to call the ob…
22 All of the integrate functions except `integrate_n_steps` can be called with any stepper following …
23 Depending on the abilities of the stepper, the integrate functions make use of step-size control or…
37 These integrate the ODE given by `system` with subsequent steps from `stepper`.
55 [heading Integrate a given number of steps]
136 [heading Convenience integrate function]
138 Additionally to the sophisticated integrate function above odeint also provides a simple `integrate
140 `integrate( system , x0 , t0 , t1 , dt )`
[all …]
Dgetting_started.qbk71 * `#include <boost/numeric/odeint/integrate/XYZ.hpp>` - the integrate routines.
81 Imaging, you want to numerically integrate a harmonic oscillator with
101 For the integration itself we'll use the `integrate` function, which is a convenient way to get qu…
105 The integrate function expects as parameters the rhs of the ode as defined
107 well as the initial time step=size. Note, that `integrate` uses an adaptive step-size during
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/iterator/integrate/
Dintegrate.hpp3 boost/numeric/odeint/integrate/integrate.hpp
25 #include <boost/numeric/odeint/iterator/integrate/null_observer.hpp>
26 #include <boost/numeric/odeint/iterator/integrate/integrate_adaptive.hpp>
45 integrate( System system , State &start_state , Time start_time , Time end_time , Time dt , Observe… in integrate() function
57 size_t integrate( System system , State &start_state , Time start_time , Time end_time , Time dt ) in integrate() function
59 return integrate( system , start_state , start_time , end_time , dt , null_observer() ); in integrate()
64 …* \fn integrate( System system , State &start_state , Time start_time , Time end_time , Time dt , …
86 * \fn integrate( System system , State &start_state , Time start_time , Time end_time , Time dt )
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/test/
Dintegrate_stepper_refs.cpp6 Tests the integrate functions with boost::ref( stepper)
32 #include <boost/numeric/odeint/integrate/integrate_const.hpp>
33 #include <boost/numeric/odeint/integrate/integrate_adaptive.hpp>
34 #include <boost/numeric/odeint/integrate/integrate_times.hpp>
35 #include <boost/numeric/odeint/integrate/integrate_n_steps.hpp>
244 std::cout << "integrate const" << std::endl; in BOOST_AUTO_TEST_CASE_TEMPLATE()
252 std::cout << "integrate adaptive" << std::endl; in BOOST_AUTO_TEST_CASE_TEMPLATE()
259 std::cout << "integrate n steps" << std::endl; in BOOST_AUTO_TEST_CASE_TEMPLATE()
266 std::cout << "integrate times" << std::endl; in BOOST_AUTO_TEST_CASE_TEMPLATE()
Dintegrate_implicit.cpp6 This file tests the integrate function and its variants with the implicit steppers.
36 #include <boost/numeric/odeint/integrate/integrate_const.hpp>
37 #include <boost/numeric/odeint/integrate/integrate_adaptive.hpp>
38 #include <boost/numeric/odeint/integrate/integrate_times.hpp>
39 #include <boost/numeric/odeint/integrate/integrate_n_steps.hpp>
41 #include <boost/numeric/odeint/iterator/integrate/integrate_const.hpp>
42 #include <boost/numeric/odeint/iterator/integrate/integrate_adaptive.hpp>
43 #include <boost/numeric/odeint/iterator/integrate/integrate_times.hpp>
44 #include <boost/numeric/odeint/iterator/integrate/integrate_n_steps.hpp>
Dintegrate.cpp3 libs/numeric/odeint/test/integrate.cpp
6 This file tests the integrate function and its variants.
38 #include <boost/numeric/odeint/integrate/integrate_const.hpp>
39 #include <boost/numeric/odeint/integrate/integrate_adaptive.hpp>
40 #include <boost/numeric/odeint/integrate/integrate_times.hpp>
41 #include <boost/numeric/odeint/integrate/integrate_n_steps.hpp>
43 #include <boost/numeric/odeint/iterator/integrate/integrate_const.hpp>
44 #include <boost/numeric/odeint/iterator/integrate/integrate_adaptive.hpp>
45 #include <boost/numeric/odeint/iterator/integrate/integrate_times.hpp>
46 #include <boost/numeric/odeint/iterator/integrate/integrate_n_steps.hpp>
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/
Dodeint.hpp70 #include <boost/numeric/odeint/integrate/integrate.hpp>
71 #include <boost/numeric/odeint/integrate/integrate_adaptive.hpp>
72 #include <boost/numeric/odeint/integrate/integrate_const.hpp>
73 #include <boost/numeric/odeint/integrate/integrate_n_steps.hpp>
74 #include <boost/numeric/odeint/integrate/integrate_times.hpp>
76 #include <boost/numeric/odeint/integrate/observer_collection.hpp>
77 #include <boost/numeric/odeint/integrate/max_step_checker.hpp>
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/ode/
H A DAbstractIntegrator.java78 /** Differential equations to integrate. */
220 * Get the differential equations to integrate.
222 * @return differential equations to integrate
252 public double integrate( in integrate() method in AbstractIntegrator
276 integrate(expandableODE, t); in integrate()
284 * Integrate a set of differential equations up to the given time.
297 * @param equations complete set of differential equations to integrate
306 public abstract void integrate(ExpandableStatefulODE equations, double t) in integrate() method in AbstractIntegrator
321 * is called outside of a call to {@link #integrate(ExpandableStatefulODE, double)} or
322 * {@link #integrate(FirstOrderDifferentialEquations, double, double[], double, double[])})
H A DFirstOrderFieldIntegrator.java144 * <p>The result is undefined if the method is called outside of calls to <code>integrate</code>
158 * <p>The result is undefined if the method is called outside of calls to <code>integrate</code>
187 * <p>The number of evaluations corresponds to the last call to the <code>integrate</code>
195 * Integrate the differential equations up to the given time.
203 * @param equations differential equations to integrate
214 FieldODEStateAndDerivative<T> integrate( in integrate() method
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/test_external/eigen/
Dintegrate.cpp3 integrate.cpp
24 #include <boost/numeric/odeint/integrate/integrate.hpp>
44 integrate< double >( constant_system_functor_standard() , x , t_start , t_end , dt ); in BOOST_AUTO_TEST_CASE()
56 integrate< double >( lorenz() , x , t_start , t_end , dt ); in BOOST_AUTO_TEST_CASE()
62 integrate( lorenz() , x2 , t_start , t_end , dt ); in BOOST_AUTO_TEST_CASE()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/iterator/integrate/detail/
Dintegrate_adaptive.hpp3 boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp
6 Default Integrate adaptive implementation.
25 #include <boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>
27 #include <boost/numeric/odeint/iterator/integrate/detail/functors.hpp>
73 * classical integrate adaptive
93 * integrate adaptive for dense output steppers
/aosp_15_r20/cts/tests/tests/util/src/android/util/cts/
H A DStrictJarFileTest.java211 copyFile("Integrate.jar"); in testJarSigning_wellFormed()
213 new StrictJarFile(new File(mResourcesFile, "Integrate.jar").getAbsolutePath()); in testJarSigning_wellFormed()
219 copyFile("Integrate.jar"); in testJarSigning_wellFormed_FD()
221 new File(mResourcesFile, "Integrate.jar").getAbsolutePath()); in testJarSigning_wellFormed_FD()
240 copyFile("Integrate.jar"); in testJarSigning_fudgedEntry()
242 new File(mResourcesFile, "Integrate.jar").getAbsolutePath()); in testJarSigning_fudgedEntry()
248 copyFile("Integrate.jar"); in testJarSigning_fudgedEntry_FD()
250 new File(mResourcesFile, "Integrate.jar").getAbsolutePath()); in testJarSigning_fudgedEntry_FD()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/integrate/detail/
Dintegrate_adaptive.hpp3 boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp
6 Default Integrate adaptive implementation.
28 #include <boost/numeric/odeint/integrate/max_step_checker.hpp>
29 #include <boost/numeric/odeint/integrate/detail/integrate_const.hpp>
78 * integrate adaptive for controlled stepper
117 * integrate adaptive for dense output steppers
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
H A 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
H A 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()
H A 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
H A 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
H A 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
/aosp_15_r20/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)
/aosp_15_r20/external/python/cpython3/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)
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ctypes/test/
H A 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)

12345678910>>...48