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

<<21222324252627282930>>

  /external/eigen/Eigen/src/Geometry/
AngleAxis.h 35 * but rather to make easier the creation of other rotation (Quaternion, rotation Matrix)
60 typedef Matrix<Scalar,3,3> Matrix3;
61 typedef Matrix<Scalar,3,1> Vector3;
86 /** Constructs and initialize the angle-axis rotation from a 3x3 rotation matrix. */
193 /** Set \c *this from a 3x3 rotation matrix \a mat.
205 * \brief Sets \c *this from a 3x3 rotation matrix.
214 /** Constructs and \returns an equivalent 3x3 rotation matrix.
Translation.h 39 typedef Matrix<Scalar,Dim,1> VectorType;
40 /** corresponding linear transformation matrix type */
41 typedef Matrix<Scalar,Dim,Dim> LinearMatrixType;
115 res.matrix().setZero();
118 res.matrix().row(Dim).setZero();
185 res.matrix().setZero();
198 res.matrix().setZero();
201 res.matrix().row(Dim).setZero();
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 49 // We have an explicit matrix at hand, compatible with Ref<>
72 const ActualMatrixType& matrix() const function in class:Eigen::internal::generic_matrix_wrapper
98 // MatrixType is not compatible with Ref<> -> matrix-free wrapper
121 const ActualMatrixType& matrix() const function in class:Eigen::internal::generic_matrix_wrapper
171 /** Initialize the solver with matrix \a A for further \c Ax=b solving.
176 * \warning this class stores a reference to the matrix A as well as some
179 * matrix A, or modify a copy of A.
186 compute(matrix());
191 /** Initializes the iterative solver for the sparsity pattern of the matrix \a A for further solving \c Ax=b problems.
194 * we might, for instance, implement column reordering for faster matrix vector products
369 const ActualMatrixType& matrix() const function in class:Eigen::IterativeSolverBase
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 44 Matrix<StorageIndex,Dynamic,1> sizes(mat.outerSize());
64 Matrix<StorageIndex,Dynamic,1> sizes(tmp.outerSize());
143 /** \returns the matrix with the permutation applied to the columns
147 operator*(const SparseMatrixBase<SparseDerived>& matrix, const PermutationBase<PermDerived>& perm)
148 { return Product<SparseDerived, PermDerived, AliasFreeProduct>(matrix.derived(), perm.derived()); }
150 /** \returns the matrix with the permutation applied to the rows
154 operator*( const PermutationBase<PermDerived>& perm, const SparseMatrixBase<SparseDerived>& matrix)
155 { return Product<PermDerived, SparseDerived, AliasFreeProduct>(perm.derived(), matrix.derived()); }
158 /** \returns the matrix with the inverse permutation applied to the columns.
162 operator*(const SparseMatrixBase<SparseDerived>& matrix, const InverseImpl<PermutationType, PermutationStorage>& tperm
    [all...]
  /external/eigen/bench/
BenchSparseUtil.h 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 typedef Matrix<Scalar,Dynamic,1> DenseVector;
86 typedef mtl::compressed2D<Scalar, mtl::matrix::parameters<mtl::tag::col_major> > MtlSparse;
87 typedef mtl::compressed2D<Scalar, mtl::matrix::parameters<mtl::tag::row_major> > MtlSparseRowMajor;
90 mtl::matrix::inserter<MtlSparse> ins(dst);
118 #include <boost/numeric/ublas/matrix.hpp>
sparse_dense_product.cpp 124 Map<Matrix<Scalar,Dynamic,1> >(&gmmV1[0], cols) = v1;
125 Map<Matrix<Scalar,Dynamic,1> >(&gmmV2[0], cols) = v2;
146 // Map<Matrix<Scalar,Dynamic,1> >(&gmmV1[0], cols) = v1;
147 // Map<Matrix<Scalar,Dynamic,1> >(&gmmV2[0], cols) = v2;
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 43 typedef Eigen::Matrix<real,SIZE,SIZE> gene_matrix;
44 typedef Eigen::Matrix<real,SIZE,1> gene_vector;
  /external/eigen/test/
boostmultiprec.cpp 146 typedef Matrix<Real,Dynamic,Dynamic> Mat;
147 typedef Matrix<std::complex<Real>,Dynamic,Dynamic> MatC;
denseLM.cpp 25 typedef Matrix<Scalar,Dynamic,1> VectorType;
148 typedef Matrix<T,Dynamic,1> VectorType;
geo_alignedbox.cpp 30 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
91 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
mixingtypes.cpp 42 typedef Matrix<float, SizeAtCompileType, SizeAtCompileType> Mat_f;
43 typedef Matrix<double, SizeAtCompileType, SizeAtCompileType> Mat_d;
44 typedef Matrix<std::complex<float>, SizeAtCompileType, SizeAtCompileType> Mat_cf;
45 typedef Matrix<std::complex<double>, SizeAtCompileType, SizeAtCompileType> Mat_cd;
46 typedef Matrix<float, SizeAtCompileType, 1> Vec_f;
47 typedef Matrix<double, SizeAtCompileType, 1> Vec_d;
48 typedef Matrix<std::complex<float>, SizeAtCompileType, 1> Vec_cf;
49 typedef Matrix<std::complex<double>, SizeAtCompileType, 1> Vec_cd;
149 // check matrix-matrix product
    [all...]
product_mmtr.cpp 30 typedef Matrix<Scalar,Dynamic,Dynamic,ColMajor> MatrixColMaj;
31 typedef Matrix<Scalar,Dynamic,Dynamic,RowMajor> MatrixRowMaj;
sparseLM.cpp 23 typedef Matrix<Scalar,Dynamic,1> VectorType;
131 typedef Matrix<T,Dynamic,1> VectorType;
sparse_vector.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
17 typedef Matrix<Scalar,Dynamic,1> DenseVector;
105 // sparse matrix to sparse vector
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 22 typedef Matrix<Scalar, Dim, 1> VectorType;
172 typedef Matrix<Scalar, Dim, 1> VectorType;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 41 * Compute the pseudo inverse of the non-square matrix C such that
53 typedef Matrix<Scalar,Dynamic,1> TmpVec;
112 typedef Matrix<Scalar,Dynamic,1> TmpVec;
GMRES.h 23 * \param mat matrix of linear system of equations
64 typedef Matrix < Scalar, Dynamic, 1 > VectorType;
65 typedef Matrix < Scalar, Dynamic, Dynamic, ColMajor> FMatrixType;
86 // storage for Hessenberg matrix and Householder data
115 // apply matrix M to v: v = mat * v;
157 // insert coefficients into upper matrix triangle
192 // clear Hessenberg matrix and Householder data
231 * \tparam _MatrixType the type of the sparse matrix A, can be a dense or a sparse matrix.
255 * GMRES can also be used in a matrix-free context, see the following \link MatrixfreeSolverExample example \endlink
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 37 typedef Matrix<RootType,_Deg,1> RootsType;
322 * Currently a QR algorithm is used to compute the eigenvalues of the companion matrix of
339 typedef Matrix<Scalar,_Deg,_Deg> CompanionMatrixType;
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 165 * Prior to API level {@value Build.VERSION_CODES#O} the current matrix and
177 Matrix preservedMatrix = null;
313 * Restore the current matrix when restore() is called.
316 * {@link #saveLayerAlpha(RectF, int)}. For saveLayer() calls the matrix
376 * Saves the current matrix and clip onto a private stack.
390 * Based on saveFlags, can save the current matrix and clip onto a private
394 * disabling the saving of matrix or clip with this method.
569 * modifications to the matrix/clip state since the last save call. It is
580 * Returns the number of matrix/clip states on the Canvas' private stack.
614 * Preconcat the current matrix with the specified translatio
    [all...]
  /frameworks/base/libs/hwui/
Program.h 29 #include "Matrix.h"
115 Matrix,
275 case ColorFilterMode::Matrix:
  /frameworks/base/libs/hwui/hwui/
Canvas.h 51 Matrix = 0x01,
57 MatrixClip = Matrix | Clip,
130 * that would change state (e.g. matrix or clip). Clients of asSkCanvas()
185 // Matrix
187 virtual void setMatrix(const SkMatrix& matrix) = 0;
189 virtual void concat(const SkMatrix& matrix) = 0;
239 virtual void drawBitmap(Bitmap& bitmap, const SkMatrix& matrix,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CropFilter.java 21 import android.graphics.Matrix;
128 Matrix transform = Quad.getTransform(sourceQuad, targetQuad);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
NopCanvas.java 21 import android.graphics.Matrix;
239 public void drawBitmap(Bitmap bitmap, Matrix matrix, Paint paint) {
  /frameworks/support/compat/java/android/support/v4/app/
ActivityCompat.java 24 import android.graphics.Matrix;
481 Matrix viewToGlobalMatrix, RectF screenBounds) {
  /packages/apps/Camera2/src/com/android/camera/captureintent/
CaptureIntentModuleUI.java 32 import android.graphics.Matrix;
157 * Update preview transform matrix.
159 * @param matrix The preview transform matrix.
161 public void updatePreviewTransform(Matrix matrix) {
163 mAppUI.updatePreviewTransform(matrix);

Completed in 529 milliseconds

<<21222324252627282930>>