HomeSort by relevance Sort by last modified time
    Searched defs:VectorType (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/eigen/test/eigen2/
eigen2_inverse.cpp 24 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
eigen2_qr.cpp 23 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
eigen2_alignedbox.cpp 24 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
26 VectorType p0 = VectorType::Random(dim);
27 VectorType p1 = VectorType::Random(dim);
31 BoxType b1(VectorType::Random(dim),VectorType::Random(dim));
eigen2_linearstructure.cpp 19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
eigen2_miscmatrices.cpp 19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
28 VectorType v1 = VectorType::Random(rows);
35 square.diagonal() = VectorType::Ones(rows);
eigen2_parametrizedline.cpp 25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType;
29 VectorType p0 = VectorType::Random(dim);
30 VectorType p1 = VectorType::Random(dim);
32 VectorType d0 = VectorType::Random(dim).normalized();
eigen2_array.cpp 21 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
56 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
107 template<typename VectorType> void lpNorm(const VectorType& v)
109 VectorType u = VectorType::Random(v.size());
114 VERIFY_IS_APPROX(ei_pow(u.template lpNorm<5>(), typename VectorType::RealScalar(5)), u.cwise().abs().cwise().pow(5).sum());
eigen2_basicstuff.cpp 15 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
29 VectorType v1 = VectorType::Random(rows),
30 v2 = VectorType::Random(rows),
31 vzero = VectorType::Zero(rows);
eigen2_nomalloc.cpp 28 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
41 VectorType v1 = VectorType::Random(rows),
42 v2 = VectorType::Random(rows),
43 vzero = VectorType::Zero(rows);
  /external/eigen/test/
conservative_resize.cpp 63 typedef Matrix<Scalar, 1, Eigen::Dynamic> VectorType;
65 VectorType m, n;
68 m = n = VectorType::Random(50);
72 m = n = VectorType::Random(50);
76 m = n = VectorType::Random(50);
80 m = n = VectorType::Random(50);
88 m = n = VectorType::Random(50);
92 m = n = VectorType::Random(50);
101 m = n = VectorType::Random(50);
102 m.conservativeResizeLike(VectorType::Zero(size))
    [all...]
dontalign.cpp 24 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
32 VectorType v = VectorType::Random(rows);
44 v = VectorType::MapAligned(array, rows);
eigensolver_generalized_real.cpp 24 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
39 VectorType realEigenvalues = eig.eigenvalues().real();
inverse.cpp 45 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
64 VectorType v3 = VectorType::Random(rows);
miscmatrices.cpp 19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
27 VectorType v1 = VectorType::Random(rows);
34 square.diagonal() = VectorType::Ones(rows);
product_trmv.cpp 17 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
26 VectorType v1 = VectorType::Random(rows);
array_replicate.cpp 19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
29 VectorType v1 = VectorType::Random(rows);
array_reverse.cpp 20 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
28 VectorType v1 = VectorType::Random(rows);
70 VectorType v1_r = v1.reverse();
71 // Verify that a VectorType::reverse() of an expression works
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 38 typedef Matrix<Scalar,Dim,1> VectorType;
48 VectorType m_coeffs;
72 explicit inline Scaling(const VectorType& coeffs) : m_coeffs(coeffs) {}
74 const VectorType& coeffs() const { return m_coeffs; }
75 VectorType& coeffs() { return m_coeffs; }
102 inline VectorType operator* (const VectorType& other) const
Translation.h 38 typedef Matrix<Scalar,Dim,1> VectorType;
48 VectorType m_coeffs;
70 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
72 const VectorType& vector() const { return m_coeffs; }
73 VectorType& vector() { return m_coeffs; }
106 inline VectorType operator* (const VectorType& other) const
AlignedBox.h 34 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
45 inline AlignedBox(const VectorType& _min, const VectorType& _max) : m_min(_min), m_max(_max) {}
48 inline explicit AlignedBox(const VectorType& p) : m_min(p), m_max(p) {}
66 inline const VectorType& (min)() const { return m_min; }
68 inline VectorType& (min)() { return m_min; }
70 inline const VectorType& (max)() const { return m_max; }
72 inline VectorType& (max)() { return m_max; }
75 inline bool contains(const VectorType& p) const
83 inline AlignedBox& extend(const VectorType& p
    [all...]
Hyperplane.h 40 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
56 inline Hyperplane(const VectorType& n, const VectorType& e)
67 inline Hyperplane(const VectorType& n, Scalar d)
77 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1)
88 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1, const VectorType& p2)
90 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 3
    [all...]
ParametrizedLine.h 36 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
48 ParametrizedLine(const VectorType& origin, const VectorType& direction)
54 static inline ParametrizedLine Through(const VectorType& p0, const VectorType& p1)
62 const VectorType& origin() const { return m_origin; }
63 VectorType& origin() { return m_origin; }
65 const VectorType& direction() const { return m_direction; }
66 VectorType& direction() { return m_direction; }
71 RealScalar squaredDistance(const VectorType& p) cons
    [all...]
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 130 typedef typename plain_matrix_type<Derived>::type VectorType;
135 static inline VectorType run(const Derived& src)
137 VectorType perp = VectorType::Zero(src.size());
154 typedef typename plain_matrix_type<Derived>::type VectorType;
157 static inline VectorType run(const Derived& src)
159 VectorType perp;
194 typedef typename plain_matrix_type<Derived>::type VectorType;
195 static inline VectorType run(const Derived& src)
196 { return VectorType(-numext::conj(src.y()), numext::conj(src.x())).normalized();
    [all...]
RotationBase.h 38 typedef Matrix<Scalar,Dim,1> VectorType;
93 inline VectorType _transformVector(const OtherVectorType& v) const
  /external/llvm/include/llvm/ADT/
UniqueVector.h 26 typedef typename std::vector<T> VectorType;
27 typedef typename VectorType::iterator iterator;
28 typedef typename VectorType::const_iterator const_iterator;
36 VectorType Vector;

Completed in 302 milliseconds

1 2 3 4