HomeSort by relevance Sort by last modified time
    Searched full:linear (Results 1 - 25 of 2696) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-default/
MANIFEST 6 script-linear-b
  /frameworks/base/tests/RenderScriptTests/ShadersTest/res/raw/
depth_fs.glsl 2 // Non-linear depth value
9 // Linear depth value
  /external/eigen/
eigen3.pc.in 2 Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms
  /external/chromium/chrome/browser/resources/keyboard/
index.html 9 background: -webkit-linear-gradient(#131925, #04070B);
30 background: -webkit-linear-gradient(#5a616f, #505662);
33 background: -webkit-linear-gradient(#505662, #5a616f);
37 background: -webkit-linear-gradient(#505662, #41464f);
40 background: -webkit-linear-gradient(#41464f, #505662);
44 background: -webkit-linear-gradient(#41464f, #32373d);
47 background: -webkit-linear-gradient(#32373d, #41464f);
52 background: -webkit-linear-gradient(#0d0d0d, #1e2026);
59 background: -webkit-linear-gradient(#1f2127, #1b1e22);
66 background: -webkit-linear-gradient(#0d0d0d, #1e2026)
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
AudioUtilities.cpp 41 double linearToDecibels(double linear)
43 // It's not possible to calculate decibels for a zero linear value since it would be -Inf.
44 // -1000.0 dB represents a very tiny linear value in case we ever reach this case.
45 ASSERT(linear);
46 if (!linear)
49 return 20.0 * log10(linear);
  /external/ceres-solver/docs/
further.tex 4 For a short but informative introduction to the subject we recommend the booklet by Madsel et al.~\cite{madsen2004methods}. For a general introduction to non-linear optimization we recommend the text by Nocedal \& Wright~\cite{nocedal2000numerical}. Bj{\"o}rck's book remains the seminal reference on least squares problems~\cite{bjorck1996numerical}. Trefethen \& Bau's book is our favourite text on introductory numerical linear algebra~\cite{trefethen1997numerical}. Triggs et al., provide a thorough coverage of the bundle adjustment problem~\cite{triggs-etal-1999}.
nnlsq.tex 2 \chapter{Non-linear Least Squares}
11 is a Non-linear least squares problem~\footnote{Ceres can solve a more general version of this problem, but for pedagogical reasons, we will restrict ourselves to this class of problems for now. See section~\ref{chapter:overview} for a full description of the problems that Ceres can solve}. Here $\|\cdot\|$ denotes the Euclidean norm of a vector.
13 Such optimization problems arise in almost every area of science and engineering. Whenever there is data to be analyzed, curves to be fitted, there is usually a linear or a non-linear least squares problem lurking in there somewhere.
15 Perhaps the simplest example of such a problem is the problem of Ordinary Linear Regression, where given observations $(x_1,y_1),\hdots, (x_k,y_k)$, we wish to find the line $y = mx + c$, that best explains $y$ as a function of $x$. One way to solve this problem is to find the solution to the following optimization problem
23 This is a non-linear regression problem and solving it by hand is much more tedious. Ceres is designed to help you mod (…)
  /dalvik/tests/091-deep-interface-hierarchy/
info.txt 3 In cases like this can quickly lead to excessive LinearAlloc consumption due to more than linear
  /external/chromium/chrome/browser/resources/
collected_cookies.css 14 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
extensions_infobar.css 6 background: -webkit-linear-gradient(#DAE7F9, #B5CBE8);
extensions_infobar_mac.css 6 background: -webkit-linear-gradient(#EBEBEB, #CFCFCF);
keyboard_overlay.css 10 background: -webkit-linear-gradient(#484848, #252525) no-repeat;
17 background: -webkit-linear-gradient(#334c7e, #0d172b);
54 background: -webkit-linear-gradient(rgba(61, 61, 61, 0.8),
95 background: -webkit-linear-gradient(#44a142, #3e5f37);
99 background: -webkit-linear-gradient(#42a143, #2e5c53);
103 background: -webkit-linear-gradient(#45a343, #515134);
107 background: -webkit-linear-gradient(#52a12a, #4f4d2e);
111 background: -webkit-linear-gradient(#1f37a2, #19265a);
115 background: -webkit-linear-gradient(#439fa5, #1e3760);
119 background: -webkit-linear-gradient(#733690, #22255e)
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Translation.h 2 // for linear algebra. Eigen itself is part of the KDE project.
39 /** corresponding linear transformation matrix type */
82 /** Concatenates a translation and a linear transformation */
83 inline TransformType operator* (const LinearMatrixType& linear) const;
89 /** Concatenates a linear transformation and a translation */
91 friend inline TransformType operator* (const LinearMatrixType& linear, const Translation& t)
95 res.linear() = linear;
96 res.translation() = linear * t.m_coeffs;
156 res.linear().diagonal() = other.coeffs()
    [all...]
  /external/eigen/Eigen/src/Geometry/
Translation.h 2 // for linear algebra.
40 /** corresponding linear transformation matrix type */
100 /** Concatenates a translation and a linear transformation */
102 inline AffineTransformType operator* (const EigenBase<OtherDerived>& linear) const;
109 /** \returns the concatenation of a linear transformation \a l with the translation \a t */
112 inline AffineTransformType operator*(const EigenBase<OtherDerived>& linear, const Translation& t)
116 res.linear() = linear.derived();
117 res.translation() = linear.derived() * t.m_coeffs;
184 res.linear().diagonal().fill(other.factor())
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
transition-accelerated.html 15 -webkit-animation: slow 2s infinite linear alternate;
19 -webkit-animation: fast 2s infinite linear alternate;
transition-timing-functions.html 26 .container:hover .linear,
39 .container .linear {
40 -webkit-transition-timing-function: linear;
93 <div class="linear">
94 Linear
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLOfButtons2.java 17 package android.widget.layout.linear;
20 * One of two simple vertical linear layouts of buttons used to test out
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 43 LINEAR (1),
123 * Retrieve a sampler with min and mag set to linear and wrap modes set to
133 b.setMinification(Value.LINEAR);
134 b.setMagnification(Value.LINEAR);
143 * Retrieve a sampler with mag set to linear, min linear mipmap linear, and
154 b.setMagnification(Value.LINEAR);
183 * Retrieve a sampler with min and mag set to linear and wrap modes set to
193 b.setMinification(Value.LINEAR);
    [all...]
  /external/ceres-solver/
README 1 Ceres Solver - A non-linear least squares minimizer
  /external/chromium/chrome/browser/resources/shared/css/
button.css 7 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
20 background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
29 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
40 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
  /external/eigen/Eigen/
LeastSquares 19 * This module provides linear regression and related features.
  /external/eigen/unsupported/Eigen/
IterativeSolvers 2 // for linear algebra.
17 * This module aims to provide various iterative linear and non linear solver algorithms.
  /external/webkit/Source/WebCore/inspector/front-end/
goToLineDialog.css 7 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E9E9E9), to(#CFCFCF));
28 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
38 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
  /external/ceres-solver/internal/ceres/
linear_solver.h 1 // Ceres Solver - A fast non-linear least squares minimizer
31 // Abstract interface for objects solving linear systems of various
54 // solving linear systems
59 // maybe used multiple times for solving multiple linear systems with
62 // same LinearSolver instance with two different linear systems will
104 // eliminated by the linear solver.
107 // the linear solver is informed that it should eliminate the
110 // each elimination group, the linear solver is free to choose how
111 // the parameter blocks are ordered. Different linear solvers have
151 // This option only makes sense for unsymmetric linear solver
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Sampler.java 45 LINEAR (1),
125 * Retrieve a sampler with min and mag set to linear and wrap modes set to
135 b.setMinification(Value.LINEAR);
136 b.setMagnification(Value.LINEAR);
145 * Retrieve a sampler with mag set to linear, min linear mipmap linear, and
156 b.setMagnification(Value.LINEAR);
185 * Retrieve a sampler with min and mag set to linear and wrap modes set to
195 b.setMinification(Value.LINEAR);
    [all...]

Completed in 1235 milliseconds

1 2 3 4 5 6 7 8 91011>>