HomeSort by relevance Sort by last modified time
    Searched defs:VectorType (Results 51 - 75 of 83) sorted by null

1 23 4

  /external/eigen/Eigen/src/Geometry/
Umeyama.h 108 typedef Matrix<Scalar, Dimension, 1> VectorType;
119 const VectorType src_mean = src.rowwise().sum() * one_over_n;
120 const VectorType dst_mean = dst.rowwise().sum() * one_over_n;
138 VectorType S = VectorType::Ones(m);
142 const VectorType& d = svd.singularValues();
AlignedBox.h 38 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
101 inline const VectorType& (min)() const { return m_min; }
103 inline VectorType& (min)() { return m_min; }
105 inline const VectorType& (max)() const { return m_max; }
107 inline VectorType& (max)() { return m_max; }
111 const CwiseBinaryOp<internal::scalar_sum_op<Scalar>, const VectorType, const VectorType> >
119 inline const CwiseBinaryOp< internal::scalar_difference_op<Scalar>, const VectorType, const VectorType> sizes() const
130 inline CwiseBinaryOp< internal::scalar_difference_op<Scalar>, const VectorType, const VectorType> diagonal() cons
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 37 typedef Matrix<Scalar,Dynamic,1> VectorType;
42 VectorType r = rhs - mat * x;
43 VectorType r0 = r;
50 VectorType v = VectorType::Zero(n), p = VectorType::Zero(n);
51 VectorType y(n), z(n);
52 VectorType kt(n), ks(n);
54 VectorType s(n), t(n);
ConjugateGradient.h 36 typedef Matrix<Scalar,Dynamic,1> VectorType;
43 VectorType residual = rhs - mat * x; //initial residual
44 VectorType p(n);
48 VectorType z(n), tmp(n);
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 108 typedef Matrix<Scalar,Dynamic,1> VectorType;
  /external/eigen/test/
array_for_matrix.cpp 79 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
134 template<typename VectorType> void lpNorm(const VectorType& v)
136 VectorType u = VectorType::Random(v.size());
141 VERIFY_IS_APPROX(internal::pow(u.template lpNorm<5>(), typename VectorType::RealScalar(5)), u.array().abs().pow(5).sum());
basicstuff.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
31 VectorType v1 = VectorType::Random(rows),
32 vzero = VectorType::Zero(rows);
block.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
31 VectorType v1 = VectorType::Random(rows);
59 VectorType bc1(m1.block(0,c1,rows,1));
cholesky.cpp 33 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
44 VectorType vec = VectorType::Random(symm.rows());
73 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
76 VectorType vecB = VectorType::Random(rows), vecX(rows);
205 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
208 VectorType vecB = VectorType::Random(rows), vecX(rows);
255 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
    [all...]
geo_alignedbox.cpp 26 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
30 VectorType p0 = VectorType::Random(dim);
31 VectorType p1 = VectorType::Random(dim);
33 p1 = VectorType::Random(dim); }
37 BoxType b1(VectorType::Random(dim),VectorType::Random(dim));
60 VectorType r = b0.sample();
75 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
    [all...]
geo_parametrizedline.cpp 25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType;
30 VectorType p0 = VectorType::Random(dim);
31 VectorType p1 = VectorType::Random(dim);
33 VectorType d0 = VectorType::Random(dim).normalized();
55 VectorType p2 = VectorType::Random(dim);
56 VectorType n2 = VectorType::Random(dim).normalized()
    [all...]
geo_quaternion.cpp 27 typedef Matrix<Scalar,3,1> VectorType;
nomalloc.cpp 33 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
geo_hyperplane.cpp 26 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType;
30 VectorType p0 = VectorType::Random(dim);
31 VectorType p1 = VectorType::Random(dim);
33 VectorType n0 = VectorType::Random(dim).normalized();
34 VectorType n1 = VectorType::Random(dim).normalized();
54 DiagonalMatrix<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random())
    [all...]
  /external/eigen/test/eigen2/
eigen2_hyperplane.cpp 25 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType;
29 VectorType p0 = VectorType::Random(dim);
30 VectorType p1 = VectorType::Random(dim);
32 VectorType n0 = VectorType::Random(dim).normalized();
33 VectorType n1 = VectorType::Random(dim).normalized();
53 Scaling<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random())
    [all...]
eigen2_submatrices.cpp 46 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
60 VectorType v1 = VectorType::Random(rows),
61 v2 = VectorType::Random(rows),
62 v3 = VectorType::Random(rows),
63 vzero = VectorType::Zero(rows);
82 VectorType bc1(m1.block(0,c1,rows,1));
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 22 typedef Matrix<Scalar, Dim, 1> VectorType;
24 vector_int_pair(const VectorType &v, int i) : first(v), second(i) {}
26 VectorType first;
172 typedef Matrix<Scalar, Dim, 1> VectorType;
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MatrixMarketIterator.h 45 typedef Matrix<Scalar,Dynamic,1> VectorType;
101 inline VectorType& rhs()
133 inline VectorType& refX()
206 VectorType m_rhs; // Current vector
207 VectorType m_refX; // The reference solution, if exists
  /external/eigen/unsupported/test/
FFTW.cpp 68 template<int Container, typename Scalar> struct VectorType;
70 template<typename Scalar> struct VectorType<StdVectorContainer,Scalar>
75 template<typename Scalar> struct VectorType<EigenVectorContainer,Scalar>
85 typedef typename VectorType<Container,Scalar>::type ScalarVector;
86 typedef typename VectorType<Container,Complex>::type ComplexVector;
147 typedef typename VectorType<Container,Complex>::type ComplexVector;
BVH.cpp 27 typedef Matrix<double, Dim, 1> VectorType;
30 Ball(const VectorType &c, double r) : center(c), radius(r) {}
32 VectorType center;
44 typedef Matrix<double, Dim, 1> VectorType;
49 BallPointStuff(const VectorType &inP) : p(inP), calls(0), count(0) {}
69 bool intersectVolumeObject(const BoxType &r, const VectorType &v) { ++calls; return r.contains(v); }
70 bool intersectObjectObject(const BallType &b, const VectorType &v){
83 double minimumOnVolumeObject(const BoxType &r, const VectorType &v) { ++calls; return r.squaredExteriorDistance(v); }
84 double minimumOnObjectObject(const BallType &b, const VectorType &v){ ++calls; return SQR((std::max)(0., (b.center - v).norm() - b.radius)); }
86 VectorType p
    [all...]
  /external/llvm/include/llvm/
PassAnalysisSupport.h 39 typedef SmallVector<AnalysisID, 32> VectorType;
43 VectorType Required, RequiredTransitive, Preserved;
108 const VectorType &getRequiredSet() const { return Required; }
109 const VectorType &getRequiredTransitiveSet() const {
112 const VectorType &getPreservedSet() const { return Preserved; }
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 62 typedef Matrix<Scalar,Dim,1> VectorType;
507 VectorType tmp = linear().col(0)*sy + linear().col(1);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 65 typedef Matrix < Scalar, Dynamic, 1 > VectorType;
74 VectorType p0 = rhs - mat*x;
75 VectorType r0 = precond.solve(p0);
78 VectorType w = VectorType::Zero(restart + 1);
81 VectorType tau = VectorType::Zero(restart + 1);
85 VectorType e;
95 VectorType v = VectorType::Unit(m, k - 1), workspace(m)
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 143 /// and VectorType.
356 /// VectorType - Class to represent vector types.
358 class VectorType : public SequentialType {
361 VectorType(const VectorType &) LLVM_DELETED_FUNCTION;
362 const VectorType &operator=(const VectorType &) LLVM_DELETED_FUNCTION;
363 VectorType(Type *ElType, unsigned NumEl);
365 /// VectorType::get - This static method is the primary way to construct an
366 /// VectorType
    [all...]
  /external/llvm/lib/IR/
Pass.cpp 229 typedef AnalysisUsage::VectorType VectorType;
230 VectorType &CFGOnlyList;
231 GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}

Completed in 205 milliseconds

1 23 4