HomeSort by relevance Sort by last modified time
    Searched refs:VectorX (Results 1 - 7 of 7) sorted by null

  /external/eigen/bench/
sparse_lu.cpp 41 typedef Matrix<Scalar,Dynamic,1> VectorX;
46 void doEigen(const char* name, const EigenSparseMatrix& sm1, const VectorX& b, VectorX& x, int flags = 0)
79 VectorX b = VectorX::Random(cols);
80 VectorX x = VectorX::Random(cols);
  /external/eigen/test/
array_replicate.cpp 22 typedef Matrix<Scalar, Dynamic, 1> VectorX;
33 VectorX vx1;
umeyama.cpp 98 typedef Matrix<Scalar, Eigen::Dynamic, 1> VectorX;
105 VectorX t = Scalar(50)*VectorX::Random(dim,1);
vectorization_logic.cpp 87 typedef Matrix<Scalar,Dynamic,1> VectorX;
194 VERIFY(test_redux(VectorX(10),
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 257 template<typename VectorX, typename VectorY, typename OtherScalar>
258 void apply_rotation_in_the_plane(VectorX& _x, VectorY& _y, const JacobiRotation<OtherScalar>& j);
292 template<typename VectorX, typename VectorY, typename OtherScalar>
293 void /*EIGEN_DONT_INLINE*/ apply_rotation_in_the_plane(VectorX& _x, VectorY& _y, const JacobiRotation<OtherScalar>& j)
295 typedef typename VectorX::Index Index;
296 typedef typename VectorX::Scalar Scalar;
309 if(VectorX::SizeAtCompileTime == Dynamic &&
310 (VectorX::Flags & VectorY::Flags & PacketAccessBit) &&
381 else if(VectorX::SizeAtCompileTime != Dynamic &&
382 (VectorX::Flags & VectorY::Flags & PacketAccessBit) &
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 106 typename VectorX, typename VectorB, typename VectorF>
107 void constrained_cg(const TMatrix& A, const CMatrix& C, VectorX& x,