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

12 3 4

  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 41 typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> VectorType;
58 ParametrizedLine(const VectorType& origin, const VectorType& direction)
65 static inline ParametrizedLine Through(const VectorType& p0, const VectorType& p1)
73 const VectorType& origin() const { return m_origin; }
74 VectorType& origin() { return m_origin; }
76 const VectorType& direction() const { return m_direction; }
77 VectorType& direction() { return m_direction; }
82 RealScalar squaredDistance(const VectorType& p) cons
    [all...]
Translation.h 39 typedef Matrix<Scalar,Dim,1> VectorType;
49 VectorType m_coeffs;
71 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
87 const VectorType& vector() const { return m_coeffs; }
88 VectorType& vector() { return m_coeffs; }
90 const VectorType& translation() const { return m_coeffs; }
91 VectorType& translation() { return m_coeffs; }
133 inline VectorType operator* (const VectorType& other) const
145 static const Translation Identity() { return Translation(VectorType::Zero());
    [all...]
Hyperplane.h 45 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
67 inline Hyperplane(const VectorType& n, const VectorType& e)
78 inline Hyperplane(const VectorType& n, Scalar d)
88 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1)
99 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1, const VectorType& p2)
101 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 3
    [all...]
  /external/eigen/test/
adjoint.cpp 22 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
32 VectorType v1 = VectorType::Random(rows),
33 v2 = VectorType::Random(rows),
34 v3 = VectorType::Random(rows),
35 vzero = VectorType::Zero(rows);
83 VERIFY_IS_APPROX(VectorType::Random(rows).normalized().norm(), RealScalar(1));
array.cpp 89 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> VectorType;
cwiseop.cpp 36 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
49 VectorType vzero = VectorType::Zero(rows),
50 vones = VectorType::Ones(rows),
80 VERIFY_IS_APPROX(v3.setConstant(rows, s1), VectorType::Constant(rows,s1));
diagonalmatrices.cpp 18 typedef Matrix<Scalar, Rows, 1> VectorType;
29 VectorType v1 = VectorType::Random(rows),
30 v2 = VectorType::Random(rows);
eigensolver_selfadjoint.cpp 26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
exceptions.cpp 90 typedef Eigen::Matrix<ScalarWithExceptions,Dynamic,1> VectorType;
95 VectorType v0(n), v1(n);
geo_homogeneous.cpp 20 typedef Matrix<Scalar,Size,1, ColMajor> VectorType;
29 VectorType v0 = VectorType::Random(),
30 ones = VectorType::Ones();
geo_orthomethods.cpp 71 typedef Matrix<Scalar,Size,1> VectorType;
76 VectorType v0 = VectorType::Random(size);
householder.cpp 26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
43 VectorType v1 = VectorType::Random(rows), v2;
49 v1 = VectorType::Random(rows);
57 v1 = VectorType::Random(rows);
68 v1 = VectorType::Random(rows);
integer_types.cpp 59 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
74 VectorType v1(rows),
75 v2 = VectorType::Random(rows),
76 vzero = VectorType::Zero(rows);
83 v1 = VectorType::Random(rows);
product_selfadjoint.cpp 17 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
28 VectorType v1 = VectorType::Random(rows),
29 v2 = VectorType::Random(rows),
qr.cpp 22 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
qr_colpivoting.cpp 24 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
qr_fullpivoting.cpp 23 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
triangular.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
31 VectorType v2 = VectorType::Random(rows);
126 typedef Matrix<Scalar, Rows, 1> VectorType;
  /external/eigen/test/eigen2/
eigen2_adjoint.cpp 20 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
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));
eigen2_cholesky.cpp 30 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
33 VectorType vecB = VectorType::Random(rows), vecX(rows);
48 convert<VectorType>(vecB, gVecB);
49 convert<VectorType>(vecB, gVecX);
52 VectorType vecX(rows), _vecX, _vecB;
eigen2_cwiseop.cpp 26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
40 VectorType v1 = VectorType::Random(rows),
41 v2 = VectorType::Random(rows),
42 vzero = VectorType::Zero(rows),
43 vones = VectorType::Ones(rows),
73 VERIFY_IS_APPROX(v3.setConstant(rows, s1), VectorType::Constant(rows,s1));
eigen2_eigensolver.cpp 27 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
110 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
eigen2_triangular.cpp 16 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
35 VectorType v1 = VectorType::Random(rows),
36 v2 = VectorType::Random(rows),
37 vzero = VectorType::Zero(rows);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunctionAtomic.h 32 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
98 VectorType e = VectorType::Ones(m_Arows);
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
270 static void _compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp);
275 VectorType m_temp;
292 void HessenbergDecomposition<MatrixType>::_compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp)

Completed in 374 milliseconds

12 3 4