HomeSort by relevance Sort by last modified time
    Searched defs:MatrixType (Results 76 - 85 of 85) sorted by null

1 2 34

  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 155 * \param MatrixType the type of the object in which we are taking the triangular part
168 template<typename MatrixType, unsigned int _Mode>
169 struct traits<TriangularView<MatrixType, _Mode> > : traits<MatrixType>
171 typedef typename ref_selector<MatrixType>::non_const_type MatrixTypeNested;
174 typedef typename MatrixType::PlainObject FullMatrixType;
175 typedef MatrixType ExpressionType;
178 FlagsLvalueBit = is_lvalue<MatrixType>::value ? LvalueBit : 0,
193 typedef _MatrixType MatrixType;
199 typedef typename internal::remove_all<typename MatrixType::ConjugateReturnType>::type MatrixConjugateReturnType
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
RealQZ.h 40 * RealQZ(const MatrixType& B, const MatrixType& B, bool computeQZ)
60 typedef _MatrixType MatrixType;
62 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
63 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
64 Options = MatrixType::Options,
65 MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
66 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
68 typedef typename MatrixType::Scalar Scalar;
104 RealQZ(const MatrixType& A, const MatrixType& B, bool computeQZ = true)
    [all...]
SelfAdjointEigenSolver.h 23 template<typename MatrixType, typename DiagType, typename SubDiagType>
24 ComputationInfo computeFromTridiagonal_impl(DiagType& diag, SubDiagType& subdiag, const Index maxIterations, bool computeEigenvectors, MatrixType& eivec);
57 * SelfAdjointEigenSolver(const MatrixType&, int) constructor which computes
62 * The documentation for SelfAdjointEigenSolver(const MatrixType&, int)
74 typedef _MatrixType MatrixType;
76 Size = MatrixType::RowsAtCompileTime,
77 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
78 Options = MatrixType::Options,
79 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
83 typedef typename MatrixType::Scalar Scalar
    [all...]
  /external/eigen/Eigen/src/SVD/
BDCSVD.h 38 typedef _MatrixType MatrixType;
77 typedef _MatrixType MatrixType;
78 typedef typename MatrixType::Scalar Scalar;
79 typedef typename NumTraits<typename MatrixType::Scalar>::Real RealScalar;
82 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
83 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
85 MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
86 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime,
88 MatrixOptions = MatrixType::Options
106 * perform decompositions via BDCSVD::compute(const MatrixType&)
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 82 typedef _MatrixType MatrixType;
84 typedef typename MatrixType::Scalar Scalar;
85 typedef typename MatrixType::RealScalar RealScalar;
86 typedef typename MatrixType::StorageIndex StorageIndex;
95 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
96 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
104 explicit SparseLU(const MatrixType& matrix)
116 void analyzePattern (const MatrixType& matrix);
117 void factorize (const MatrixType& matrix);
118 void simplicialfactorize(const MatrixType& matrix)
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 16 template<typename MatrixType, typename OrderingType> class SparseQR;
23 typedef typename SparseQRType::MatrixType ReturnType;
33 typedef typename SparseQRType::MatrixType ReturnType;
78 typedef _MatrixType MatrixType;
80 typedef typename MatrixType::Scalar Scalar;
81 typedef typename MatrixType::RealScalar RealScalar;
82 typedef typename MatrixType::StorageIndex StorageIndex;
89 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
90 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
103 explicit SparseQR(const MatrixType& mat) : m_analysisIsok(false), m_lastError(""), m_useDefaultThreshold(true),m_isQSorted(false),m_i (…)
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 105 template<typename MatrixType>
174 template<typename MatrixType>
175 static SluMatrix Map(MatrixBase<MatrixType>& _mat)
177 MatrixType& mat(_mat.derived());
178 eigen_assert( ((MatrixType::Flags&RowMajorBit)!=RowMajorBit) && "row-major dense matrices are not supported by SuperLU");
181 res.setScalarType<typename MatrixType::Scalar>();
187 res.storage.lda = internal::convert_index<int>(MatrixType::IsVectorAtCompileTime ? mat.size() : mat.outerStride());
192 template<typename MatrixType>
193 static SluMatrix Map(SparseMatrixBase<MatrixType>& a_mat)
195 MatrixType &mat(a_mat.derived())
    [all...]
  /external/eigen/test/
geo_transformations.cpp 50 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
102 typedef typename Transform3::MatrixType MatrixType;
178 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
181 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
226 VERIFY_IS_APPROX(t4.matrix(), MatrixType::Identity());
239 VERIFY_IS_APPROX(t4.matrix(), MatrixType::Identity());
248 VERIFY_IS_APPROX(t4.matrix(), MatrixType::Identity());
525 typedef Matrix<Scalar,Dim+1,Dim+1> MatrixType;
542 MatrixType M = MatrixType::Random()
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 32 typename MatrixType,
34 : int(MatrixType::RowsAtCompileTime) == int(transform_traits<TransformType>::HDim) ? 1
36 int RhsCols = MatrixType::ColsAtCompileTime>
217 typedef typename internal::make_proper_matrix_type<Scalar,Rows,HDim,Options>::type MatrixType;
218 /** constified MatrixType */
219 typedef const MatrixType ConstMatrixType;
223 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
228 MatrixType&,
229 Block<MatrixType,Dim,HDim> >::type AffinePart;
232 const MatrixType&
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 66 typedef SparseMatrix<_Scalar, _Options, _StorageIndex> MatrixType;
67 typedef typename ref_selector<MatrixType>::type MatrixTypeNested;
    [all...]

Completed in 893 milliseconds

1 2 34