HomeSort by relevance Sort by last modified time
    Searched refs:coeff (Results 101 - 125 of 192) sorted by null

1 2 3 45 6 7 8

  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 69 EIGEN_STRONG_INLINE const Scalar coeff(Index rows, Index cols) const function in class:Eigen::CwiseNullaryOp
80 EIGEN_STRONG_INLINE const Scalar coeff(Index index) const function in class:Eigen::CwiseNullaryOp
302 if(!internal::isApprox(this->coeff(i, j), value, prec))
486 if(!internal::isMuchSmallerThan(this->coeff(i, j), static_cast<Scalar>(1), prec))
725 if(!internal::isApprox(this->coeff(i, j), static_cast<Scalar>(1), prec))
730 if(!internal::isMuchSmallerThan(this->coeff(i, j), static_cast<RealScalar>(1), prec))
Transpositions.h 84 inline const Index& coeff(Index i) const { return indices().coeff(i); } function in class:Eigen::TranspositionsBase
383 if((j=m_transpositions.coeff(k))!=k)
Block.h 168 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::Block
170 return m_xpr.coeff(row + m_startRow.value(), col + m_startCol.value());
188 inline const CoeffReturnType coeff(Index index) const function in class:Eigen::Block
191 .coeff(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
ProductBase.h 95 && "if you wanted a coeff-wise or a dot product use the respective explicit functions");
134 // restrict coeff accessors to 1x1 expressions. No need to care about mutators here since this isnt a Lvalue expression
135 typename Base::CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::ProductBase
143 return result.coeff(row,col);
147 typename Base::CoeffReturnType coeff(Index i) const function in class:Eigen::ProductBase
152 return result.coeff(i);
Redux.h 233 res = func(res,mat.coeff(index));
236 res = func(res,mat.coeff(index));
241 res = mat.coeff(0);
243 res = func(res,mat.coeff(index));
Replicate.h 92 inline Scalar coeff(Index row, Index col) const function in class:Eigen::Replicate
102 return m_matrix.coeff(actual_row, actual_col);
SelfCwiseBinaryOp.h 94 tmp = m_functor(tmp, _other.coeff(row,col));
103 tmp = m_functor(tmp, _other.coeff(index));
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 78 inline Scalar coeff(Index row, Index col) const function in class:Eigen::Homogeneous
83 return m_matrix.coeff(row, col);
163 ColsAtCompileTime==1?1:size()-1) / coeff(size()-1);
  /external/eigen/Eigen/src/Householder/
Householder.h 74 Scalar c0 = coeff(0);
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR.h 188 result += (internal::abs(m_qr.coeff(i,i)) > premultiplied_threshold);
441 m_colsPermutation.applyTranspositionOnTheRight(k, m_colsTranspositions.coeff(k));
491 for(Index i = 0; i < nonzero_pivots; ++i) dst.row(dec().colsPermutation().indices().coeff(i)) = c.row(i);
492 for(Index i = nonzero_pivots; i < cols; ++i) dst.row(dec().colsPermutation().indices().coeff(i)).setZero();
ColPivHouseholderQR_MKL.h 77 m_nonzero_pivots += (internal::abs(m_qr.coeff(i,i)) > premultiplied_threshold);\
  /external/eigen/Eigen/src/SparseCore/
SparseDot.h 33 res += internal::conj(i.value()) * other.coeff(i.index());
SparseVector.h 88 inline Scalar coeff(Index row, Index col) const function in class:Eigen::SparseVector
91 return coeff(IsColVector ? row : col);
93 inline Scalar coeff(Index i) const { return m_data.at(i); } function in class:Eigen::SparseVector
98 return coeff(IsColVector ? row : col);
SparseDiagonalProduct.h 112 : Base(expr.rhs()*(expr.lhs().diagonal().coeff(outer)), outer)
146 : Base(expr.lhs()*expr.rhs().diagonal().coeff(outer), outer)
SparseDenseProduct.h 116 : Base(prod.lhs(), 0), m_outer(outer), m_factor(prod.rhs().coeff(outer))
162 tmp += it.value() * rhs.coeff(it.index(),c);
183 typename Res::Scalar rhs_j = alpha * rhs.coeff(j,c);
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 103 LVM_INT16 coeff, /* All pass filter coefficient */
  /external/flac/libFLAC/
lpc.c 92 unsigned sample, coeff; local
98 for(coeff = 0; coeff < lag; coeff++)
99 autoc[coeff] = 0.0;
102 for(coeff = 0; coeff < lag; coeff++)
103 autoc[coeff] += d * data[sample+coeff];
    [all...]
  /external/eigen/bench/
benchEigenSolver.cpp 61 acc += ei.eigenvectors().coeff(r,c);
75 acc += ei.eigenvectors().coeff(r,c);
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 81 B_stl[i] = B.coeff(i);
91 A_stl[j][i] = A.coeff(i,j);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 138 Scalar al = C.row(i).dot(x) - f.coeff(i);
177 lambda = (std::min)(lambda, (f.coeff(i)-C.row(i).dot(x)) / bb);
  /external/libvpx/libvpx/vp8/encoder/
asm_enc_offsets.c 23 DEFINE(vp8_block_coeff, offsetof(BLOCK, coeff));
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 261 *sign = real(mat.coeff(0,0))>0 ? 1:-1;
282 *sign = real(mat.diagonal().coeff(index_of_biggest_in_corner)) > 0 ? 1 : -1;
308 mat.coeffRef(index_of_biggest_in_corner,k) = conj(mat.coeff(index_of_biggest_in_corner,k));
362 RealScalar dj = real(mat.coeff(j,j));
363 Scalar wj = w.coeff(j);
  /external/eigen/demos/opengl/
quaternion_demo.cpp 168 m_angles.coeffRef(1) = std::asin(m.coeff(0,2));
169 m_angles.coeffRef(0) = std::atan2(-m.coeff(1,2),m.coeff(2,2));
170 m_angles.coeffRef(2) = std::atan2(-m.coeff(0,1),m.coeff(0,0));
  /external/eigen/test/
block.cpp 165 VERIFY(m.coeff(i,j) == data[i*rowStride + j*colStride]);
171 VERIFY(m.coeff(i,j) == data[(MatrixType::Flags&RowMajorBit)
178 VERIFY(innerStride == int((&m.coeff(1))-(&m.coeff(0))));
180 VERIFY(m.coeff(i) == data[i*innerStride]);
  /external/eigen/blas/
BandTriangularSolver.h 87 -= other.coeff(i,col) * cjLhs.col(i).segment(actual_start,actual_k);

Completed in 3788 milliseconds

1 2 3 45 6 7 8