HomeSort by relevance Sort by last modified time
    Searched refs:Jet (Results 1 - 10 of 10) sorted by null

  /external/ceres-solver/include/ceres/
jet.h 65 // the function with one extended with infinitesimals. The class Jet, defined in
96 // this file, it is necessary to create a single jet type which has components
105 // Jet<double, 2> x(0); // Pick the 0th dual number for x.
106 // Jet<double, 2> y(1); // Pick the 1st dual number for y.
107 // Jet<double, 2> z = f(x, y);
112 // Most users should not use Jet objects directly; a wrapper around Jet objects,
118 // "jets". A 1st order jet is an element of the ring
122 // which essentially means that each jet consists of a "scalar" value 'a' from T
138 // The only remaining question is how to evaluate the function of a jet, fo
    [all...]
  /sdk/build/
tools.darwin.atree 35 external/sonivox/jet_tools/JetCreator tools/Jet/JetCreator
36 prebuilts/tools/darwin-x86/jetcreator/libEASLIb.dylib tools/Jet/JetCreator/libEASLIb.dylib
37 external/sonivox/jet_tools/JetCreator_content tools/Jet/demo_content
38 external/sonivox/jet_tools/logic_templates tools/Jet/logic_templates
tools.windows.atree 123 external/sonivox/jet_tools/JetCreator tools/Jet/JetCreator
124 external/sonivox/jet_tools/JetCreator_content tools/Jet/demo_content
125 external/sonivox/jet_tools/logic_templates tools/Jet/logic_templates
126 prebuilts/tools/windows/jetcreator/EASDLL.dll tools/Jet/JetCreator/EASDLL.dll
  /external/ceres-solver/internal/ceres/
jet_test.cc 31 #include "ceres/jet.h"
49 typedef Jet<double, 2> J;
51 // Convenient shorthand for making a jet.
69 TEST(Jet, Jet) {
270 TEST(Jet, JetsInEigenMatrices) {
291 Jet<double, 3> a(5.5, 0);
302 Jet<double, 3> a(5.5, 0);
313 Jet<double, 3> a(5.5, 0);
324 Jet<double, 3> a(5.5, 0)
    [all...]
rotation_test.cc 36 #include "ceres/jet.h"
618 typedef Jet<double, 3> J3;
619 typedef Jet<double, 4> J4;
653 bool IsClose(const Jet<double, N> &x, const Jet<double, N> &y) {
665 void ExpectJetArraysClose(const Jet<double, N> *x, const Jet<double, N> *y) {
668 LOG(ERROR) << "Jet " << i << "/" << M << " not equal";
671 Jet<double, N> d, zero;
autodiff_test.cc 398 typedef Jet<double, 2> JetT;
  /external/ceres-solver/docs/
changes.tex 162 \item Fixed Jet to integer comparison. (Keith Leung)
181 \item Fix alignment issues when combining \texttt{Jet} and
powell.tex 57 some type \texttt{T}. The reason for using templates here is because Ceres will call \texttt{F4::operator<T>()}, with $\texttt{T=double}$ when just the residual is needed, and with a special type $T=\texttt{Jet}$ when the Jacobians are needed.
modeling.tex 71 \texttt{Jet} objects for T in order to compute the derivative when necessary, but
  /external/ceres-solver/include/ceres/internal/
autodiff.h 33 // dual numbers in jet.h. Before reading the rest of this file, it is adivsable
34 // to read jet.h's header comment in detail.
59 // Similar to the 2-parameter example for f described in jet.h, computing the
60 // jacobian dy/dx is done by substutiting a suitable jet object for x and all
62 // a Jet<double, 4>.
64 // Before substituting a jet object for x, the dual components are set
89 // vector-valued parameters, for example, x[3] and z[6]. Unfortunately, the jet
110 // In this case, the necessary jet type is Jet<double, 5>. Here is a
111 // visualization of the jet objects in this case
    [all...]

Completed in 768 milliseconds