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

1234

/external/eigen/test/eigen2/
H A Deigen2_qr.cpp23 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType; typedef
H A Deigen2_alignedbox.cpp24 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType; typedef
26 VectorType p0 = VectorType::Random(dim);
27 VectorType p1 = VectorType::Random(dim);
31 BoxType b1(VectorType::Random(dim),VectorType::Random(dim));
H A Deigen2_inverse.cpp24 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType; typedef
H A Deigen2_linearstructure.cpp19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
H A Deigen2_miscmatrices.cpp19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
28 VectorType v1 = VectorType::Random(rows);
35 square.diagonal() = VectorType::Ones(rows);
H A Deigen2_array.cpp21 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
56 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
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());
H A Deigen2_basicstuff.cpp15 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
29 VectorType v1 = VectorType::Random(rows),
30 v2 = VectorType::Random(rows),
31 vzero = VectorType::Zero(rows);
H A Deigen2_parametrizedline.cpp25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType; typedef
29 VectorType p0 = VectorType::Random(dim);
30 VectorType p1 = VectorType::Random(dim);
32 VectorType d0 = VectorType::Random(dim).normalized();
H A Deigen2_adjoint.cpp20 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
35 VectorType v1 = VectorType::Random(rows),
36 v2 = VectorType::Random(rows),
37 v3 = VectorType::Random(rows),
38 vzero = VectorType::Zero(rows);
76 VERIFY_IS_APPROX(VectorType::Random(rows).normalized().norm(), RealScalar(1));
H A Deigen2_cholesky.cpp30 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
33 VectorType vecB = VectorType::Random(rows), vecX(rows);
48 convert<VectorType>(vecB, gVecB);
49 convert<VectorType>(vecB, gVecX);
52 VectorType vecX(rows), _vecX, _vecB;
/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 Deigensolver_generalized_real.cpp24 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
39 VectorType realEigenvalues = eig.eigenvalues().real();
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 Dadjoint.cpp65 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
75 VectorType v1 = VectorType::Random(rows),
76 v2 = VectorType::Random(rows),
77 v3 = VectorType::Random(rows),
78 vzero = VectorType::Zero(rows);
H A Ddiagonalmatrices.cpp17 typedef Matrix<Scalar, Rows, 1> VectorType; typedef
28 VectorType v1 = VectorType::Random(rows),
29 v2 = VectorType::Random(rows);
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h26 typedef typename std::vector<T> VectorType; typedef in class:llvm::UniqueVector
27 typedef typename VectorType::iterator iterator;
28 typedef typename VectorType::const_iterator const_iterator;
36 VectorType Vector;
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h36 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType; typedef in class:Eigen::ParametrizedLine
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
[all...]
H A DScaling.h38 typedef Matrix<Scalar,Dim,1> VectorType; typedef in class:Eigen::Scaling
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
H A DTranslation.h38 typedef Matrix<Scalar,Dim,1> VectorType; typedef in class:Eigen::Translation
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
/external/eigen/Eigen/src/Geometry/
H A DOrthoMethods.h130 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
135 static inline VectorType run(const Derived& src)
137 VectorType perp = VectorType::Zero(src.size());
154 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
157 static inline VectorType run(const Derived& src)
159 VectorType perp;
194 typedef typename plain_matrix_type<Derived>::type VectorType; typedef in struct:Eigen::internal::unitOrthogonal_selector
195 static inline VectorType run(const Derived& src)
196 { return VectorType(
[all...]

Completed in 3772 milliseconds

1234