HomeSort by relevance Sort by last modified time
    Searched full:coeffref (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/eigen/failtest/
block_on_const_type_actually_const_0.cpp 13 Block<CV_QUALIFIER Matrix3f>(m, 0, 0, 3, 3).coeffRef(0, 0) = 1.0f;
block_on_const_type_actually_const_1.cpp 13 Block<CV_QUALIFIER MatrixXf, 3, 3>(m, 0, 0).coeffRef(0, 0) = 1.0f;
diagonal_on_const_type_actually_const.cpp 13 Diagonal<CV_QUALIFIER MatrixXf>(m).coeffRef(0) = 1.0f;
map_on_const_type_actually_const_0.cpp 12 Map<CV_QUALIFIER MatrixXf>(ptr, 1, 1).coeffRef(0,0) = 1.0f;
map_on_const_type_actually_const_1.cpp 12 Map<CV_QUALIFIER Vector3f>(ptr).coeffRef(0) = 1.0f;
transpose_on_const_type_actually_const.cpp 13 Transpose<CV_QUALIFIER MatrixXf>(m).coeffRef(0, 0) = 1.0f;
  /external/eigen/Eigen/src/Core/
Swap.h 52 inline Scalar& coeffRef(Index row, Index col)
54 return m_expression.const_cast_derived().coeffRef(row, col);
57 inline Scalar& coeffRef(Index index)
59 return m_expression.const_cast_derived().coeffRef(index);
62 inline Scalar& coeffRef(Index row, Index col) const
64 return m_expression.coeffRef(row, col);
67 inline Scalar& coeffRef(Index index) const
69 return m_expression.coeffRef(index);
79 m_expression.coeffRef(row, col) = _other.coeff(row, col);
80 _other.coeffRef(row, col) = tmp
    [all...]
ArrayWrapper.h 66 inline Scalar& coeffRef(Index row, Index col)
68 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const Scalar& coeffRef(Index row, Index col) const
73 return m_expression.const_cast_derived().coeffRef(row, col);
81 inline Scalar& coeffRef(Index index)
83 return m_expression.const_cast_derived().coeffRef(index);
86 inline const Scalar& coeffRef(Index index) const
88 return m_expression.const_cast_derived().coeffRef(index);
179 inline Scalar& coeffRef(Index row, Index col)
181 return m_expression.const_cast_derived().coeffRef(row, col)
    [all...]
Flagged.h 68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
73 inline const Scalar& coeffRef(Index index) const
75 return m_matrix.const_cast_derived().coeffRef(index);
78 inline Scalar& coeffRef(Index row, Index col)
80 return m_matrix.const_cast_derived().coeffRef(row, col);
83 inline Scalar& coeffRef(Index index)
85 return m_matrix.const_cast_derived().coeffRef(index);
SelfCwiseBinaryOp.h 65 inline Scalar& coeffRef(Index row, Index col)
68 return m_matrix.const_cast_derived().coeffRef(row, col);
70 inline const Scalar& coeffRef(Index row, Index col) const
72 return m_matrix.coeffRef(row, col);
77 inline Scalar& coeffRef(Index index)
80 return m_matrix.const_cast_derived().coeffRef(index);
82 inline const Scalar& coeffRef(Index index) const
84 return m_matrix.const_cast_derived().coeffRef(index);
93 Scalar& tmp = m_matrix.coeffRef(row,col);
102 Scalar& tmp = m_matrix.coeffRef(index)
    [all...]
NestByValue.h 55 inline Scalar& coeffRef(Index row, Index col)
57 return m_expression.const_cast_derived().coeffRef(row, col);
65 inline Scalar& coeffRef(Index index)
67 return m_expression.const_cast_derived().coeffRef(index);
Diagonal.h 97 inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
98 inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
100 inline Scalar& coeffRef(Index row, Index)
103 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
106 inline const Scalar& coeffRef(Index row, Index) const
108 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
116 inline Scalar& coeffRef(Index index)
119 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+colOffset());
122 inline const Scalar& coeffRef(Index index) const
124 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+colOffset())
    [all...]
ReturnByValue.h 29 // the Block-with-DirectAccess expression requires to have a coeffRef method.
73 Unusable& coeffRef(Index) { return *reinterpret_cast<Unusable*>(this); }
74 Unusable& coeffRef(Index,Index) { return *reinterpret_cast<Unusable*>(this); }
CwiseUnaryView.h 122 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col)
124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
127 EIGEN_STRONG_INLINE Scalar& coeffRef(Index index)
129 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
ForceAlignedAccess.h 54 inline Scalar& coeffRef(Index row, Index col)
56 return m_expression.const_cast_derived().coeffRef(row, col);
64 inline Scalar& coeffRef(Index index)
66 return m_expression.const_cast_derived().coeffRef(index);
SelfAdjointView.h 89 /** \sa MatrixBase::coeffRef()
92 inline Scalar& coeffRef(Index row, Index col)
95 return m_matrix.const_cast_derived().coeffRef(row, col);
217 dst.coeffRef(row, col) = real(src.coeff(row, col));
219 dst.coeffRef(col, row) = conj(dst.coeffRef(row, col) = src.coeff(row, col));
242 dst.coeffRef(row, col) = real(src.coeff(row, col));
244 dst.coeffRef(col, row) = conj(dst.coeffRef(row, col) = src.coeff(row, col));
265 dst.coeffRef(j,i) = conj(dst.coeff(i,j))
    [all...]
  /external/eigen/Eigen/src/LU/
Inverse.h 43 result.coeffRef(0,0) = Scalar(1) / matrix.coeff(0,0);
60 if(invertible) result.coeffRef(0,0) = typename ResultType::Scalar(1) / determinant;
73 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
74 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
75 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
76 result.coeffRef(1,1) = matrix.coeff(0,0) * invdet;
135 result.coeffRef(1,0) = cofactor_3x3<MatrixType,0,1>(matrix) * invdet;
136 result.coeffRef(1,1) = cofactor_3x3<MatrixType,1,1>(matrix) * invdet;
137 result.coeffRef(1,2) = cofactor_3x3<MatrixType,2,1>(matrix) * invdet;
138 result.coeffRef(2,0) = cofactor_3x3<MatrixType,0,2>(matrix) * invdet
    [all...]
  /external/eigen/bench/
bench_sum.cpp 15 v.coeffRef(0) += v.sum() * SCALAR(1e-20);
  /external/eigen/test/eigen2/
eigen2_sparse_vector.cpp 38 // test coeff and coeffRef
42 //VERIFY_RAISES_ASSERT( v1.coeffRef(zerocoords[i]) = 5 );
56 v1.coeffRef(nonzerocoords[0]) = Scalar(5);
57 refV1.coeffRef(nonzerocoords[0]) = Scalar(5);
eigen2_bug_132.cpp 17 VectorXd y = A.transpose() * (b-c); // bug 132: infinite recursion in coeffRef
18 VectorXd z = (b-c).transpose() * A; // bug 132: infinite recursion in coeffRef
  /external/eigen/Eigen/src/SparseCore/
TriangularSolver.h 49 other.coeffRef(i,col) = tmp;
53 other.coeffRef(i,col) = tmp/lastVal;
90 other.coeffRef(i,col) = tmp;
92 other.coeffRef(i,col) = tmp/l_ii;
109 Scalar& tmp = other.coeffRef(i,col);
123 other.coeffRef(it.index(), col) -= tmp * it.value();
141 Scalar& tmp = other.coeffRef(i,col);
151 other.coeffRef(i,col) /= it.value();
155 other.coeffRef(it.index(), col) -= tmp * it.value();
230 tempVector.coeffRef(rhsIt.index()) = rhsIt.value()
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 308 matD.coeffRef(i,i) = internal::real(m_eivalues.coeff(i));
339 matV.coeffRef(i,j) = ComplexScalar(m_eivec.coeff(i,j), m_eivec.coeff(i,j+1));
340 matV.coeffRef(i,j+1) = ComplexScalar(m_eivec.coeff(i,j), -m_eivec.coeff(i,j+1));
370 m_eivalues.coeffRef(i) = m_matT.coeff(i, i);
377 m_eivalues.coeffRef(i) = ComplexScalar(m_matT.coeff(i+1, i+1) + p, z);
378 m_eivalues.coeffRef(i+1) = ComplexScalar(m_matT.coeff(i+1, i+1) + p, -z);
444 m_matT.coeffRef(n,n) = 1.0;
461 m_matT.coeffRef(i,n) = -r / w;
463 m_matT.coeffRef(i,n) = -r / (eps * norm);
471 m_matT.coeffRef(i,n) = t
    [all...]
  /external/eigen/test/
sparse_vector.cpp 38 // test coeff and coeffRef
42 //VERIFY_RAISES_ASSERT( v1.coeffRef(zerocoords[i]) = 5 );
56 v1.coeffRef(nonzerocoords[0]) = Scalar(5);
57 refV1.coeffRef(nonzerocoords[0]) = Scalar(5);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 106 sqrtT.coeffRef(i,i) = internal::sqrt(T.coeff(i,i));
165 sqrtT.coeffRef(i,j) = (T.coeff(i,j) - tmp) / (sqrtT.coeff(i,i) + sqrtT.coeff(j,j));
223 coeffMatrix.coeffRef(0,0) = A.coeff(0,0) + B.coeff(0,0);
224 coeffMatrix.coeffRef(1,1) = A.coeff(0,0) + B.coeff(1,1);
225 coeffMatrix.coeffRef(2,2) = A.coeff(1,1) + B.coeff(0,0);
226 coeffMatrix.coeffRef(3,3) = A.coeff(1,1) + B.coeff(1,1);
227 coeffMatrix.coeffRef(0,1) = B.coeff(1,0);
228 coeffMatrix.coeffRef(0,2) = A.coeff(0,1);
229 coeffMatrix.coeffRef(1,0) = B.coeff(0,1);
230 coeffMatrix.coeffRef(1,3) = A.coeff(0,1)
    [all...]
  /external/eigen/unsupported/test/
sparse_extra.cpp 44 sm.coeffRef(remaining[i].x(),remaining[i].y()) = ref.coeff(remaining[i].x(),remaining[i].y());
75 // test coeff and coeffRef
80 VERIFY_RAISES_ASSERT( m.coeffRef(zeroCoords[0].x(),zeroCoords[0].y()) = 5 );
84 m.coeffRef(nonzeroCoords[0].x(), nonzeroCoords[0].y()) = Scalar(5);
85 refMat.coeffRef(nonzeroCoords[0].x(), nonzeroCoords[0].y()) = Scalar(5);
98 // w->coeffRef(remaining[i].x(),remaining[i].y()) = refMat.coeff(remaining[i].x(),remaining[i].y());

Completed in 2217 milliseconds

1 2 3 4 5