HomeSort by relevance Sort by last modified time
    Searched defs:Eigen (Results 301 - 310 of 310) sorted by null

<<111213

  /external/eigen/Eigen/src/Geometry/
Quaternion.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
46 Flags = Eigen::internal::traits<Derived>::Flags
331 * a 4 scalar memory buffer as an Eigen's Quaternion object.
368 * a 4 scalar memory buffer as an Eigen's Quaternion object.
774 } // end namespace Eigen
Transform.h 1 // This file is part of Eigen, a lightweight C++ template library
15 namespace Eigen {
461 // error: template instantiation resulted in unexpected function type of "Eigen::Transform<double, 3, 32, 0>
462 // (const Eigen::Transform<double, 3, 2, 0> &) const"
464 // "Eigen::internal::transform_transform_product_impl<Eigen::Transform<double, 3, 32, 0>,
465 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
    [all...]
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
698 * When it needs to get the threshold value, Eigen calls threshold().
715 /** Allows to come back to the default behavior, letting Eigen use its default formula for
718 * You should pass the special object Eigen::Default as parameter here.
719 * \code svd.setThreshold(Eigen::Default); \endcode
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 1 // This file is part of Eigen, a lightweight C++ template library
15 namespace Eigen {
32 * It benefits directly from the built-in high-performant Eigen BLAS routines.
63 * "unsupported/Eigen/src/IterativeSolvers/Scaling.h"
804 } // End namespace Eigen
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
712 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 1 // This file is part of Eigen, a lightweight C++ template library
23 namespace Eigen {
375 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 1 // This file is part of Eigen, a lightweight C++ template library
17 namespace Eigen {
589 } // end namespace Eigen
  /external/eigen/Eigen/src/Core/util/
Constants.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
159 * Various enumerations used in %Eigen. Many of these are used as template parameters.
449 } // end namespace Eigen
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
110 Eigen::Map<Matrix<Index,Dynamic,1> > innerNonZeros() { return Eigen::Map<Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); }
111 const Eigen::Map<const Matrix<Index,Dynamic,1> > innerNonZeros() const { return Eigen::Map<const Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?m_outerSize:0); }
699 Eigen::Map<Matrix<Index, Dynamic, 1> >(&this->m_data.index(0), rows()).setLinSpaced(0, rows()-1);
700 Eigen::Map<Matrix<Scalar, Dynamic, 1> >(&this->m_data.value(0), rows()).setOnes();
701 Eigen::Map<Matrix<Index, Dynamic, 1> >(this->m_outerIndex, rows()+1).setLinSpaced(0, rows());
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
270 /** View a Super LU matrix as an Eigen expression */
1024 } // end namespace Eigen

Completed in 973 milliseconds

<<111213