Searched defs:VectorType (Results 1 - 25 of 69) sorted by relevance

123

/external/eigen/test/
H A Dconservative_resize.cpp63 typedef Matrix<Scalar, 1, Eigen::Dynamic> VectorType; typedef
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
[all...]
H A Ddontalign.cpp24 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
32 VectorType v = VectorType::Random(rows);
44 v = VectorType::MapAligned(array, rows);
H A Dinverse.cpp45 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType; typedef
64 VectorType v3 = VectorType::Random(rows);
H A Dmiscmatrices.cpp19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
27 VectorType v1 = VectorType::Random(rows);
34 square.diagonal() = VectorType::Ones(rows);
H A Dproduct_trmv.cpp17 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
26 VectorType v1 = VectorType::Random(rows);
H A Darray_replicate.cpp19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
29 VectorType v1 = VectorType::Random(rows);
H A Darray_reverse.cpp20 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
28 VectorType v1 = VectorType::Random(rows);
70 VectorType v1_r = v1.reverse();
71 // Verify that a VectorType::reverse() of an expression works
H A Dproduct_large.cpp18 typedef Matrix<T,Dynamic,1> VectorType; typedef
19 VectorType x(cols); x.setRandom();
20 VectorType z(x);
21 VectorType y(rows); y.setZero();
H A Deigensolver_generalized_real.cpp27 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
43 VectorType realEigenvalues = eig.eigenvalues().real();
H A Dgeo_homogeneous.cpp20 typedef Matrix<Scalar,Size,1, ColMajor> VectorType; typedef
29 VectorType v0 = VectorType::Random(),
30 ones = VectorType::Ones();
H A Dgeo_orthomethods.cpp83 typedef Matrix<Scalar,Size,1> VectorType; typedef
88 VectorType v0 = VectorType::Random(size);
H A Dinteger_types.cpp59 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
74 VectorType v1(rows),
75 v2 = VectorType::Random(rows),
76 vzero = VectorType::Zero(rows);
83 v1 = VectorType::Random(rows);
H A Dproduct_selfadjoint.cpp16 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
27 VectorType v1 = VectorType::Random(rows),
28 v2 = VectorType::Random(rows),
H A DsparseLM.cpp23 typedef Matrix<Scalar,Dynamic,1> VectorType; typedef in struct:sparseGaussianTest
29 VectorType model(const VectorType& uv, VectorType& x)
31 VectorType y; //Change this to use expression template
39 VectorBlock<const VectorType> u(uv, 0, half);
40 VectorBlock<const VectorType> v(uv, half, half);
54 void initPoints(VectorType& uv_ref, VectorType& x)
59 int operator()(const VectorType
131 typedef Matrix<T,Dynamic,1> VectorType; typedef
[all...]
H A Dtriangular.cpp18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
31 VectorType v2 = VectorType::Random(rows);
H A Dadjoint.cpp76 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
87 VectorType v1 = VectorType::Random(rows),
88 v2 = VectorType::Random(rows),
89 v3 = VectorType::Random(rows),
90 vzero = VectorType::Zero(rows);
H A Darray_for_matrix.cpp150 template<typename VectorType> void lpNorm(const VectorType& v)
153 typedef typename VectorType::RealScalar RealScalar;
154 VectorType u = VectorType::Random(v.size());
170 VERIFY_IS_APPROX(numext::pow(u.template lpNorm<5>(), typename VectorType::RealScalar(5)), u.array().abs().pow(5).sum());
218 typedef Matrix<Scalar,Dynamic,1> VectorType; typedef
224 VectorType v(rows);
H A Dbasicstuff.cpp18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
31 VectorType v1 = VectorType::Random(rows),
32 vzero = VectorType::Zero(rows);
H A Dblock.cpp38 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
51 VectorType v1 = VectorType::Random(rows);
82 VectorType bc1(m1.block(0,c1,rows,1));
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h27 typedef typename std::vector<T> VectorType; typedef in class:llvm::UniqueVector
28 typedef typename VectorType::iterator iterator;
29 typedef typename VectorType::const_iterator const_iterator;
37 VectorType Vector;
/external/eigen/Eigen/src/Geometry/
H A DOrthoMethods.h142 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
147 static inline VectorType run(const Derived& src)
149 VectorType perp = VectorType::Zero(src.size());
166 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
170 static inline VectorType run(const Derived& src)
172 VectorType perp;
207 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
209 static inline VectorType run(const Derived& src)
210 { return VectorType(
[all...]
H A DParametrizedLine.h41 typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> VectorType; typedef in class:Eigen::ParametrizedLine
58 EIGEN_DEVICE_FUNC ParametrizedLine(const VectorType& origin, const VectorType& direction)
65 EIGEN_DEVICE_FUNC static inline ParametrizedLine Through(const VectorType& p0, const VectorType& p1)
73 EIGEN_DEVICE_FUNC const VectorType& origin() const { return m_origin; }
74 EIGEN_DEVICE_FUNC VectorType& origin() { return m_origin; }
76 EIGEN_DEVICE_FUNC const VectorType& direction() const { return m_direction; }
77 EIGEN_DEVICE_FUNC VectorType& direction() { return m_direction; }
82 EIGEN_DEVICE_FUNC RealScalar squaredDistance(const VectorType
[all...]
H A DRotationBase.h38 typedef Matrix<Scalar,Dim,1> VectorType; typedef in class:Eigen::RotationBase
93 EIGEN_DEVICE_FUNC inline VectorType _transformVector(const OtherVectorType& v) const
H A DTranslation.h39 typedef Matrix<Scalar,Dim,1> VectorType; typedef in class:Eigen::Translation
49 VectorType m_coeffs;
71 EIGEN_DEVICE_FUNC explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
87 EIGEN_DEVICE_FUNC const VectorType& vector() const { return m_coeffs; }
88 EIGEN_DEVICE_FUNC VectorType& vector() { return m_coeffs; }
90 EIGEN_DEVICE_FUNC const VectorType& translation() const { return m_coeffs; }
91 EIGEN_DEVICE_FUNC VectorType& translation() { return m_coeffs; }
134 inline typename internal::enable_if<Derived::IsVectorAtCompileTime,VectorType>::type
147 static const Translation Identity() { return Translation(VectorType::Zero()); }
H A DUmeyama.h107 typedef Matrix<Scalar, Dimension, 1> VectorType; typedef
118 const VectorType src_mean = src.rowwise().sum() * one_over_n;
119 const VectorType dst_mean = dst.rowwise().sum() * one_over_n;
137 VectorType S = VectorType::Ones(m);

Completed in 2218 milliseconds

123