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

1 2 3 4 5 6

  /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);
  /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
BaselineAlignmentCenterGravity.java 17 package android.widget.layout.linear;
BaselineButtons.java 17 package android.widget.layout.linear;
HorizontalOrientationVerticalAlignment.java 17 package android.widget.layout.linear;
LinearLayoutEditTexts.java 17 package android.widget.layout.linear;
Weight.java 17 package android.widget.layout.linear;
WeightSum.java 17 package android.widget.layout.linear;
BaselineAlignmentSpinnerButton.java 17 package android.widget.layout.linear;
26 import android.widget.layout.linear.HorizontalOrientationVerticalAlignment;
LinearLayoutEditTextsTest.java 17 package android.widget.layout.linear;
19 import android.widget.layout.linear.LinearLayoutEditTexts;
WeightSumTest.java 17 package android.widget.layout.linear;
25 import android.widget.layout.linear.WeightSum;
WeightTest.java 17 package android.widget.layout.linear;
26 import android.widget.layout.linear.Weight;
FillInWrap.java 17 package android.widget.layout.linear;
BaselineAlignmentZeroWidthAndWeightTest.java 17 package android.widget.layout.linear;
20 import android.widget.layout.linear.BaselineAlignmentZeroWidthAndWeight;
21 import android.widget.layout.linear.ExceptionTextView;
BaselineAlignmentZeroWidthAndWeight.java 17 package android.widget.layout.linear;
  /external/chromium/chrome/browser/resources/
extensions_infobar.css 6 background: -webkit-linear-gradient(#DAE7F9, #B5CBE8);
extensions_infobar_mac.css 6 background: -webkit-linear-gradient(#EBEBEB, #CFCFCF);
  /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...]
Transform.h 2 // for linear algebra. Eigen itself is part of the KDE project.
55 /** type of the matrix used to represent the linear part of the transformation */
57 /** type of read/write reference to the linear part of the transformation */
59 /** type of read/write reference to the linear part of the transformation */
107 transform->linear() = other;
147 /** \returns a read-only expression of the linear (linear) part of the transformation */
148 inline ConstLinearPart linear() const { return m_matrix.template block<Dim,Dim>(0,0); } function in class:Eigen::Transform
149 /** \returns a writable expression of the linear (linear) part of the transformation *
150 inline LinearPart linear() { return m_matrix.template block<Dim,Dim>(0,0); } function in class:Eigen::Transform
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TabHostRule.java 56 INode linear = node.appendChild(FQCN_LINEAR_LAYOUT); local
57 linear.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
58 linear.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
59 linear.setAttribute(ANDROID_URI, ATTR_ORIENTATION,
62 INode tab = linear.appendChild(FQCN_TAB_WIDGET);
67 INode frame = linear.appendChild(FQCN_FRAME_LAYOUT);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderImageJme.java 49 public RenderImageJme(String filename, boolean linear, NiftyJmeDisplay display){
57 texture.setMagFilter(linear ? MagFilter.Bilinear : MagFilter.Nearest);
58 texture.setMinFilter(linear ? MinFilter.BilinearNoMipMaps : MinFilter.NearestNoMipMaps);
  /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 (…)
  /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/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.h 47 // |linear| controls how the animation progresses. If true, the
54 bool linear,

Completed in 478 milliseconds

1 2 3 4 5 6