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

1 2 3

  /external/eigen/doc/snippets/
Tutorial_Map_using.cpp 1 typedef Matrix<float,1,Dynamic> MatrixType;
2 typedef Map<MatrixType> MapType;
3 typedef Map<const MatrixType> MapTypeConst; // a read-only map
6 MatrixType m1(n_dims), m2(n_dims);
  /external/eigen/test/
conservative_resize.cpp 19 typedef Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Storage> MatrixType;
20 typedef typename MatrixType::Index Index;
22 MatrixType m, n;
25 m = n = MatrixType::Random(50,50);
29 m = n = MatrixType::Random(50,50);
33 m = n = MatrixType::Random(50,50);
42 m = n = MatrixType::Random(50,50);
52 m = n = MatrixType::Random(50,50);
53 m.conservativeResizeLike(MatrixType::Zero(rows,cols));
63 typedef Matrix<Scalar, 1, Eigen::Dynamic> MatrixType;
    [all...]
hessenberg.cpp 16 typedef Matrix<Scalar,Size,Size> MatrixType;
20 MatrixType m = MatrixType::Random(size,size);
21 HessenbergDecomposition<MatrixType> hess(m);
22 MatrixType Q = hess.matrixQ();
23 MatrixType H = hess.matrixH();
27 VERIFY(H(row,col) == (typename MatrixType::Scalar)0);
33 MatrixType A = MatrixType::Random(size, size);
34 HessenbergDecomposition<MatrixType> cs1
    [all...]
qtvector.cpp 18 template<typename MatrixType>
19 void check_qtvector_matrix(const MatrixType& m)
21 typedef typename MatrixType::Index Index;
25 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
47 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
51 MatrixType* ref = &w[0]
    [all...]
stddeque.cpp 15 template<typename MatrixType>
16 void check_stddeque_matrix(const MatrixType& m)
18 typedef typename MatrixType::Index Index;
22 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
23 std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
29 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin()
    [all...]
stdlist.cpp 15 template<typename MatrixType>
16 void check_stdlist_matrix(const MatrixType& m)
18 typedef typename MatrixType::Index Index;
22 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
23 std::list<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
29 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin()
    [all...]
stdvector.cpp 14 template<typename MatrixType>
15 void check_stdvector_matrix(const MatrixType& m)
17 typename MatrixType::Index rows = m.rows();
18 typename MatrixType::Index cols = m.cols();
19 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
20 std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y)
    [all...]
stdvector_overload.cpp 28 template<typename MatrixType>
29 void check_stdvector_matrix(const MatrixType& m)
31 typename MatrixType::Index rows = m.rows();
32 typename MatrixType::Index cols = m.cols();
33 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
34 std::vector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
51 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
    [all...]
product_symm.cpp 16 typedef Matrix<Scalar, Size, Size> MatrixType;
21 typedef typename MatrixType::Index Index;
26 MatrixType m1 = MatrixType::Random(rows, cols),
27 m2 = MatrixType::Random(rows, cols), m3;
exceptions.cpp 91 typedef Eigen::Matrix<ScalarWithExceptions,Dynamic,Dynamic> MatrixType;
96 MatrixType m0(n,n), m1(n,n), m2(n,n);
geo_homogeneous.cpp 19 typedef Matrix<Scalar,Size,Size> MatrixType;
34 MatrixType m0 = MatrixType::Random();
umeyama.cpp 27 typedef Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> MatrixType;
29 MatrixType Q;
37 Q = MatrixType::Random(size, size);
42 typename MatrixType::ColXpr colVec = Q.col(col);
45 typename MatrixType::ColXpr prevColVec = Q.col(prevCol);
55 typename MatrixType::RowXpr rowVec = Q.row(row);
58 typename MatrixType::RowXpr prevRowVec = Q.row(prevRow);
82 typedef Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> MatrixType;
85 MatrixType Q = randMatrixUnitary<Scalar>(size);
93 template <typename MatrixType>
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 37 * GeneralizedSelfAdjointEigenSolver(const MatrixType&, const MatrixType&, int)
42 * The documentation for GeneralizedSelfAdjointEigenSolver(const MatrixType&, const MatrixType&, int)
54 typedef _MatrixType MatrixType;
90 * This constructor calls compute(const MatrixType&, const MatrixType&, int)
105 * \sa compute(const MatrixType&, const MatrixType&, int)
107 GeneralizedSelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB
    [all...]
  /external/eigen/test/eigen2/
eigen2_newstdvector.cpp 15 template<typename MatrixType>
16 void check_stdvector_matrix(const MatrixType& m)
20 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
21 std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
38 VERIFY((std::size_t)&(v[22]) == (std::size_t)&(v[21]) + sizeof(MatrixType));
42 MatrixType* ref = &w[0]
    [all...]
eigen2_parametrizedline.cpp 27 LineType::AmbientDimAtCompileTime> MatrixType;
eigen2_qtvector.cpp 20 template<typename MatrixType>
21 void check_qtvector_matrix(const MatrixType& m)
25 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
47 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
51 MatrixType* ref = &w[0];
63 typedef typename TransformType::MatrixType MatrixType
    [all...]
eigen2_stdvector.cpp 14 template<typename MatrixType>
15 void check_stdvector_matrix(const MatrixType& m)
19 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
20 std::vector<MatrixType, aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
37 VERIFY((std::size_t)&(v[22]) == (std::size_t)&(v[21]) + sizeof(MatrixType));
41 MatrixType* ref = &w[0]
    [all...]
  /external/eigen/Eigen/src/misc/
Kernel.h 23 typedef typename DecompositionType::MatrixType MatrixType;
25 typename MatrixType::Scalar,
26 MatrixType::ColsAtCompileTime, // the number of rows in the "kernel matrix"
30 MatrixType::Options,
31 MatrixType::MaxColsAtCompileTime, // see explanation for 2nd template parameter
32 MatrixType::MaxColsAtCompileTime // the kernel is a subspace of the domain space,
68 typedef typename DecompositionType::MatrixType MatrixType; \
69 typedef typename MatrixType::Scalar Scalar;
    [all...]
Solve.h 23 typedef typename DecompositionType::MatrixType MatrixType;
25 MatrixType::ColsAtCompileTime,
28 MatrixType::MaxColsAtCompileTime,
62 typedef typename DecompositionType::MatrixType MatrixType; \
63 typedef typename MatrixType::Scalar Scalar; \
64 typedef typename MatrixType::RealScalar RealScalar; \
65 typedef typename MatrixType::Index Index; \
Image.h 23 typedef typename DecompositionType::MatrixType MatrixType;
25 typename MatrixType::Scalar,
26 MatrixType::RowsAtCompileTime, // the image is a subspace of the destination space, whose
29 MatrixType::Options,
30 MatrixType::MaxRowsAtCompileTime, // the image matrix will consist of columns from the original matrix,
31 MatrixType::MaxColsAtCompileTime // so it has the same number of rows and at most as many columns.
39 typedef typename DecompositionType::MatrixType MatrixType;
43 image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix
    [all...]
SparseSolve.h 23 typedef typename DecompositionType::MatrixType MatrixType;
55 typedef typename DecompositionType::MatrixType MatrixType; \
56 typedef typename MatrixType::Scalar Scalar; \
57 typedef typename MatrixType::RealScalar RealScalar; \
58 typedef typename MatrixType::Index Index; \
74 typedef typename DecompositionType::MatrixType MatrixType;
76 MatrixType::ColsAtCompileTime
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 23 typedef DynamicSparseMatrix<_Scalar, _Options, _Index> MatrixType;
29 class InnerIterator: public MatrixType::InnerIterator
33 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
41 inline SparseInnerVectorSet(const MatrixType& matrix, Index outerStart, Index outerSize)
47 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer)
106 const typename MatrixType::Nested m_matrix;
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 124 typedef Matrix<Scalar,Dynamic,Dynamic> MatrixType;
130 MatrixType A = MatrixType::Zero(n,n);
141 HouseholderQR<MatrixType> qr(A);
144 ControlPointVectorType ctrls = qr.solve(MatrixType(pts.transpose())).transpose();
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BasicPreconditioners.h 41 typedef Matrix<Scalar,Dynamic,Dynamic> MatrixType;
131 template<typename MatrixType>
132 IdentityPreconditioner(const MatrixType& ) {}
134 template<typename MatrixType>
135 IdentityPreconditioner& analyzePattern(const MatrixType& ) { return *this; }
137 template<typename MatrixType>
138 IdentityPreconditioner& factorize(const MatrixType& ) { return *this; }
140 template<typename MatrixType>
141 IdentityPreconditioner& compute(const MatrixType& ) { return *this; }
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 24 typedef Matrix<Scalar,Dynamic,Dynamic> MatrixType;
28 template<typename MatrixType>
29 IncompleteLU(const MatrixType& mat) : m_isInitialized(false)
37 template<typename MatrixType>
38 IncompleteLU& compute(const MatrixType& mat)

Completed in 341 milliseconds

1 2 3