HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 301 - 325 of 946) sorted by null

<<11121314151617181920>>

  /external/eigen/unsupported/test/
EulerAngles.cpp 17 void verify_euler_ranged(const Matrix<Scalar,3,1>& ea,
21 typedef Matrix<Scalar,3,3> Matrix3;
22 typedef Matrix<Scalar,3,1> Vector3;
125 void verify_euler(const Matrix<Scalar,3,1>& ea)
137 template<typename Scalar> void check_all_var(const Matrix<Scalar,3,1>& ea)
157 typedef Matrix<Scalar,3,3> Matrix3;
158 typedef Matrix<Scalar,3,1> Vector3;
matrix_power.cpp 15 Matrix<T,2,2> A, B, C;
19 MatrixPower<Matrix<T,2,2> > Apow(A);
36 Matrix<std::complex<T>,2,2> A, B, C;
41 MatrixPower<Matrix<std::complex<T>,2,2> > Apow(A);
58 Matrix<T,3,1> v;
62 v = Matrix<T,3,1>::Random();
65 VERIFY(AngleAxis<T>(angle, v).matrix().isApprox(AngleAxis<T>(1,v).matrix().pow(angle), tol));
149 typedef Matrix<double,3,3,RowMajor> Matrix3dRowMajor;
150 typedef Matrix<long double,3,3> Matrix3e
    [all...]
NumericalDiff.cpp 20 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
22 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
autodiff_scalar.cpp 20 typedef Matrix<Scalar, 1, 1> Deriv1;
44 typedef Matrix<Scalar, 1, 1> Deriv1;
78 typedef Eigen::Matrix<Scalar, 1, 1> Deriv;
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
ResourceModifiers.java 31 import android.graphics.Matrix;
51 private final Matrix mMtx1;
52 private final Matrix mMtx2;
53 private final Matrix mMtx3;
77 mMtx1 = new Matrix();
84 mMtx2 = new Matrix();
90 mMtx3 = new Matrix();
  /frameworks/support/compat/java/android/support/v4/app/
SharedElementCallback.java 21 import android.graphics.Matrix;
43 private Matrix mTempMatrix;
157 * @param viewToGlobalMatrix A matrix containing a transform from the view to the screen
166 public Parcelable onCaptureSharedElementSnapshot(View sharedElement, Matrix viewToGlobalMatrix,
179 if (imageView.getScaleType() == ScaleType.MATRIX) {
180 Matrix matrix = imageView.getImageMatrix(); local
182 matrix.getValues(values);
197 mTempMatrix = new Matrix();
241 * {@link #onCaptureSharedElementSnapshot(android.view.View, android.graphics.Matrix,
271 Matrix matrix = new Matrix(); local
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedEigenSolver.h 27 * eigen-decomposition; this is expected to be an instantiation of the Matrix
30 * The generalized eigenvalues and eigenvectors of a matrix pair \f$ A \f$ and \f$ B \f$ are scalars
32 * \f$ D \f$ is a diagonal matrix with the eigenvalues on the diagonal, and
33 * \f$ V \f$ is a matrix with the eigenvectors as its columns, then \f$ A V =
34 * B V D \f$. The matrix \f$ V \f$ is almost always invertible, in which case we
37 * The generalized eigenvalues and eigenvectors of a matrix pair may be complex, even when the
38 * matrices are real. Moreover, the generalized eigenvalue might be infinite if the matrix B is
46 * a given matrix pair. Alternatively, you can use the
91 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> VectorType;
98 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ComplexVectorTy (…)
    [all...]
  /external/eigen/test/
diagonalmatrices.cpp 17 typedef Matrix<Scalar, Rows, 1> VectorType;
18 typedef Matrix<Scalar, 1, Cols> RowVectorType;
19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType;
20 typedef Matrix<Scalar, Dynamic, Dynamic> DynMatrixType;
23 typedef Matrix<Scalar, Rows==Dynamic?Dynamic:2*Rows, Cols==Dynamic?Dynamic:2*Cols> BigMatrix;
118 CALL_SUBTEST_1( diagonalmatrices(Matrix<float, 1, 1>()) );
120 CALL_SUBTEST_3( diagonalmatrices(Matrix<double,3,3,RowMajor>()) );
122 CALL_SUBTEST_5( diagonalmatrices(Matrix<float,4,4,RowMajor>()) );
125 CALL_SUBTEST_8( diagonalmatrices(Matrix<double,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
ref.cpp 38 typedef Matrix<Scalar,Dynamic,Dynamic,MatrixType::Options> DynMatrixType;
39 typedef Matrix<RealScalar,Dynamic,Dynamic,MatrixType::Options> RealDynMatrixType;
86 typedef Matrix<Scalar,Dynamic,1,VectorType::Options> DynMatrixType;
87 typedef Matrix<Scalar,Dynamic,Dynamic,ColMajor> MatrixType;
88 typedef Matrix<RealScalar,Dynamic,1,VectorType::Options> RealDynMatrixType;
165 EIGEN_DONT_INLINE void call_ref_7(Ref<Matrix<float,Dynamic,3> > a, const B &b) { VERIFY_IS_EQUAL(a,b); }
217 VERIFY_EVALUATION_COUNT( call_ref_6(A.row(3),A.row(3)), 1); // evaluated into a temp thouth it could be avoided by viewing it as a 1xn matrix
227 typedef Matrix<double,Dynamic,Dynamic,RowMajor> RowMatrixXd;
261 CALL_SUBTEST_1( ref_vector(Matrix<float, 1, 1>()) );
262 CALL_SUBTEST_1( check_const_correctness(Matrix<float, 1, 1>()) )
    [all...]
  /frameworks/base/core/java/android/view/
Surface.java 23 import android.graphics.Matrix;
112 // A matrix to scale the matrix set by application. This is set to null for
114 private Matrix mCompatibleMatrix;
407 mCompatibleMatrix = new Matrix();
777 * <li>Scales the matrix in setMatrix by the application scale, except if
778 * the matrix looks like obtained from getMatrix. This is a hack to handle
779 * the case that an application uses getMatrix to keep the original matrix,
780 * set matrix of its own, then set the original matrix back. There is n
    [all...]
  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 18 * \returns the Euler-angles of the rotation matrix \c *this using the convention defined by the triplet (\a a0,\a a1,\a a2)
36 EIGEN_DEVICE_FUNC inline Matrix<typename MatrixBase<Derived>::Scalar,3,1>
45 Matrix<Scalar,3,1> res;
46 typedef Matrix<typename Derived::Scalar,2,1> Vector2;
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_LAPACKE.h 29 * Householder QR decomposition of a matrix with column pivoting based on
43 ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> >& \
44 ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> >::compute( \
45 const EigenBase<InputType>& matrix) \
49 typedef Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> MatrixType; \
51 Index rows = matrix.rows();\
52 Index cols = matrix.cols();\
54 m_qr = matrix;\
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 33 typedef Matrix<Scalar, 1, ColsAtCompileTime> RowVectorType;
34 typedef Matrix<Scalar, RowsAtCompileTime, 1> ColVectorType;
36 typedef Matrix<Scalar, ColsAtCompileTime, 1> DiagVectorType;
37 typedef Matrix<Scalar, ColsAtCompileTimeMinusOne, 1> SuperDiagVectorType;
56 explicit UpperBidiagonalization(const MatrixType& matrix)
57 : m_householder(matrix.rows(), matrix.cols()),
58 m_bidiagonal(matrix.cols(), matrix.cols()),
61 compute(matrix);
    [all...]
  /external/eigen/bench/perf_monitoring/gemm/
lazy_gemm.cpp 28 typedef Matrix<Scalar,m,k,TA> MatA;
29 typedef Matrix<Scalar,k,n> MatB;
30 typedef Matrix<Scalar,m,n> MatC;
  /external/llvm/lib/CodeGen/
RegAllocBase.cpp 61 Matrix = &mat;
97 Matrix->invalidateVirtRegs();
133 Matrix->assign(*VirtReg, AvailablePhysReg);
  /external/swiftshader/src/Renderer/
Point.cpp 17 #include "Matrix.hpp"
54 Point operator*(const Matrix &M, const Point &P)
61 Point operator*(const Point &P, const Matrix &M)
68 Point &operator*=(Point &P, const Matrix &M)
  /frameworks/base/core/java/android/transition/
PatternPathMotion.java 20 import android.graphics.Matrix;
45 private final Matrix mTempMatrix = new Matrix();
  /frameworks/base/core/java/com/android/internal/util/
ImageUtils.java 22 import android.graphics.Matrix;
48 private final Matrix mTempMatrix = new Matrix();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Alpha8BitmapActivity.java 25 import android.graphics.Matrix;
81 Matrix matrix = new Matrix(); local
82 matrix.setScale(2.0f, 2.0f);
83 matrix.postTranslate(0.0f, mBitmap1.getHeight());
84 canvas.drawBitmap(mBitmap1, matrix, mBitmapPaint);
  /frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/
ChangeImageTransformUsage.java 19 import android.graphics.Matrix;
70 case R.id.matrix:
71 mPhoto.setScaleType(ImageView.ScaleType.MATRIX);
72 final Matrix matrix = new Matrix();
73 matrix.setRotate(45.f);
74 matrix.postTranslate(200, 10);
75 mPhoto.setImageMatrix(matrix);
85 findViewById(R.id.matrix).setOnClickListener(listener)
    [all...]
  /frameworks/support/transition/src/android/support/transition/
PatternPathMotion.java 21 import android.graphics.Matrix;
47 private final Matrix mTempMatrix = new Matrix();
  /packages/apps/Camera2/src/com/android/camera/app/
AppController.java 24 import android.graphics.Matrix;
217 * matrix of the preview TextureView. It does not modify the matrix before
220 * @param matrix transform matrix to be set on preview TextureView
223 public void updatePreviewTransformFullscreen(Matrix matrix, float aspectRatio);
234 * matrix of the preview TextureView. It is encouraged to use
236 * module needs to rotate the surface texture using transform matrix.
238 * @param matrix transform matrix to be set on preview TextureVie
    [all...]
  /packages/apps/LegacyCamera/tests/src/com/android/camera/unittest/
CameraTest.java 23 import android.graphics.Matrix;
77 Matrix matrix = new Matrix(); local
81 Util.prepareMatrix(matrix, false, 0, 800, 480);
84 matrix.mapPoints(points);
87 Util.prepareMatrix(matrix, false, 90, 800, 480);
90 matrix.mapPoints(points);
93 Util.prepareMatrix(matrix, false, 180, 800, 480);
96 matrix.mapPoints(points)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
OrientedBitmapDrawable.java 22 import android.graphics.Matrix;
88 final Matrix matrix = new Matrix(); local
89 matrix.setRotate(mOrientationParams.rotation, mCenterX, mCenterY);
91 matrix.mapRect(rotatedRect);
  /external/eigen/Eigen/src/SparseCore/
SparseSolverBase.h 27 // we process the sparse rhs per block of NbColsAtOnce columns temporarily stored into a dense matrix.
33 Eigen::Matrix<DestScalar,Dynamic,Dynamic> tmp(size,tmpCols);
34 Eigen::Matrix<DestScalar,Dynamic,Dynamic> tmpX(size,tmpCols);
51 Eigen::Matrix<DestScalar,Dynamic,1> rhs_dense(rhs);
52 Eigen::Matrix<DestScalar,Dynamic,1> dest_dense(size);
91 eigen_assert(derived().rows()==b.rows() && "solve(): invalid number of rows of the right hand side matrix b");
104 eigen_assert(derived().rows()==b.rows() && "solve(): invalid number of rows of the right hand side matrix b");

Completed in 857 milliseconds

<<11121314151617181920>>