/external/eigen/Eigen/src/Core/ |
Redux.h | 490 /** \returns the trace of \c *this, i.e. the sum of the coefficients on the main diagonal. 494 * \sa diagonal(), sum() 500 return derived().diagonal().sum();
|
EigenBase.h | 23 * Besides MatrixBase-derived classes, this also includes special matrix classes such as diagonal matrices, etc.
|
/external/eigen/Eigen/src/Core/products/ |
TriangularSolverMatrix.h | 247 // triangular packing (we only pack the panels off the diagonal, 248 // neglecting the blocks overlapping the diagonal 271 // for each small block of the diagonal (=> vertical panels of rhs)
|
/external/eigen/Eigen/src/Eigenvalues/ |
ComplexSchur.h | 37 * diagonal of the matrix T corresponds to the eigenvalues of the 291 // diagonal block on the bottom of the active submatrix 309 // choose the eigenvalue closest to the bottom entry of the diagonal
|
RealSchur.h | 33 * matrix is a block-triangular matrix whose diagonal consists of 1-by-1 35 * blocks on the diagonal of T are the same as the eigenvalues of the matrix 358 // + m_matT.bottomLeftCorner(size-1,size-1).diagonal().cwiseAbs().sum(); 365 /** \internal Look for single small sub-diagonal element and returns its index */
|
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
Symmetry.h | 286 return current_flags | GlobalImagFlag; // anti-hermitian diagonal 288 return current_flags | GlobalRealFlag; // hermitian diagonal 290 return current_flags | GlobalZeroFlag; // anti-symmetric diagonal
|
/external/eigen/doc/ |
TutorialMatrixArithmetic.dox | 177 The \em trace of a matrix, as returned by the function \link MatrixBase::trace() trace()\endlink, is the sum of the diagonal coefficients and can also be computed as efficiently using <tt>a.diagonal().sum()</tt>, as we will see later on.
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineProduct.h | 137 //Use matrix diagonal part <- Improvement : use inner iterator on dense matrix. 200 //Use matrix diagonal part <- Improvement : use inner iterator on dense matrix.
|
/external/pdfium/third_party/libopenjpeg20/ |
invert.c | 175 /* now compute up data (i.e. coeff up of the diagonal). */ 178 /* divide the lower column elements by the diagonal value */
|
/external/skia/src/sksl/ |
SkSLSPIRVCodeGenerator.h | 159 * Writes a matrix with the diagonal entries all equal to the provided expression, and all other 162 void writeUniformScaleMatrix(SpvId id, SpvId diagonal, const Type& type, OutputStream& out);
|
/packages/inputmethods/LatinIME/java/res/xml/ |
rowkeys_bengali_akkhor3.xml | 92 U+09F1: "?" BENGALI LETTER RA WITH MIDDLE DIAGONAL 93 U+09F0: "?" BENGALI LETTER RA WITH LOWER DIAGONAL -->
|
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrix.h | 64 struct traits<Diagonal<SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> > 85 struct traits<Diagonal<const SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> > 86 : public traits<Diagonal<SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> > 110 typedef Diagonal<SparseMatrix> DiagonalReturnType; 111 typedef Diagonal<const SparseMatrix> ConstDiagonalReturnType; 649 /** \returns a const expression of the diagonal coefficients. */ 650 const ConstDiagonalReturnType diagonal() const { return ConstDiagonalReturnType(*this); } function in class:Eigen::SparseMatrix 652 /** \returns a read-write expression of the diagonal coefficients. 653 * \warning If the diagonal entries are written, then all diagonal 656 DiagonalReturnType diagonal() { return DiagonalReturnType(*this); } function in class:Eigen::SparseMatrix [all...] |
SparseColEtree.h | 99 /* The diagonal element is treated here even if it does not exist in the matrix
|
/compatibility/cdd/2_device-types/ |
2_2_handheld-reqs.md | 11 * Have a physical diagonal screen size in the range of 2.5 to 8 inches.
|
/compatibility/cdd/5_multimedia/ |
5_2_video-encoding.md | 29 diagonal length of at least 2.5 inches or include a video output port or
|
/compatibility/cdd/7_hardware-compatibility/ |
7_1_display-and-graphics.md | 11 * **physical diagonal size**. The distance in inches between two opposing 27 inches in physical diagonal size. 30 in physical diagonal size. 36 physical diagonal size in the range from 1.1 to 2.5 inches.
|
7_9_virtual-reality.md | 81 * [C-1-15] The display MUST measure between 4.7" and 6.3" diagonal.
|
/device/google/contexthub/firmware/os/algos/common/math/ |
mat.c | 410 // index of largest off-diagonal element in row k 583 // Since A' * A is symmetric, can use upper diagonal elements 584 // to fill in the lower diagonal without recomputing. 674 // If diagonal element of L is too small, cholesky fails.
|
/external/deqp/doc/testspecs/GLES31/ |
functional.separate_shader.txt | 88 diagonal stripes in the drawn triangle.
|
/external/eigen/Eigen/src/Geometry/ |
RotationBase.h | 66 * - a DimxDim diagonal matrix (axis aligned scaling)
|
Scaling.h | 162 res.linear().diagonal().fill(factor());
|
/external/eigen/Eigen/src/OrderingMethods/ |
Ordering.h | 79 // m_mat.prune(keep_diag()); //Remove the diagonal elements
|
/external/eigen/Eigen/src/QR/ |
FullPivHouseholderQR.h | 392 * diagonal coefficient of U. 430 return abs(m_qr.diagonal().prod()); 438 return m_qr.diagonal().cwiseAbs().array().log().sum(); 524 // remember the maximum absolute value of diagonal coefficients
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_kernel_bmod.h | 30 * \param no_zeros Number of nonzeros elements before the diagonal part of the supernode
|
/external/eigen/bench/ |
sparse_cholesky.cpp | 106 m1.diagonal() *= 0.5;
|