HomeSort by relevance Sort by last modified time
    Searched refs:Eigen (Results 351 - 375 of 542) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Geometry/
Scaling.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
164 } // end namespace Eigen
Umeyama.h 1 // This file is part of Eigen, a lightweight C++ template library
14 // * Eigen/Core
15 // * Eigen/LU
16 // * Eigen/SVD
17 // * Eigen/Array
19 namespace Eigen {
91 * Eigen::Matrix.
170 } // end namespace Eigen
  /external/eigen/Eigen/src/Geometry/arch/
Geometry_SSE.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
113 } // end namespace Eigen
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
146 } // end namespace Eigen
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
162 } // end namespace Eigen
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); }
638 Eigen::Map<Matrix<Index, Dynamic, 1> > (m_outerIndex,outerSize()).setZero();
    [all...]
  /external/eigen/demos/opengl/
icosphere.cpp 1 // This file is part of Eigen, a lightweight C++ template library
15 using namespace Eigen;
  /external/eigen/test/eigen2/
eigen2_regression.cpp 1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra. Eigen itself is part of the KDE project.
11 #include <Eigen/LeastSquares>
gsl_helper.h 1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra. Eigen itself is part of the KDE project.
13 #include <Eigen/Core>
22 namespace Eigen {
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 1 // This file is part of Eigen, a lightweight C++ template library
45 using namespace Eigen;
GMRES.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
153 H.topLeftCorner(k, k).template triangularView < Eigen::Upper > ().solveInPlace(y);
377 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 1 // This file is part of Eigen, a lightweight C++ template library
16 namespace Eigen {
155 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunctionAtomic.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
129 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 1 namespace Eigen {
48 // TODO : this path is not tested by Eigen unit tests
104 } // end namespace Eigen
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 1 // This file is part of Eigen, a lightweight C++ template library
15 namespace Eigen {
210 } // end namespace Eigen
SkylineInplaceLU.h 1 // This file is part of Eigen, a lightweight C++ template library
13 namespace Eigen {
38 m_precision = RealScalar(0.1) * Eigen::dummy_precision<RealScalar > ();
350 } // end namespace Eigen
  /external/ceres-solver/internal/ceres/
jet_test.cc 308 Eigen::Matrix<J, 2, 2> M;
309 Eigen::Matrix<J, 2, 1> v, r1, r2;
covariance_impl.cc 40 #include "Eigen/SVD"
45 #include "ceres/internal/eigen.h"
777 Eigen::JacobiSVD<Matrix> svd(dense_jacobian,
778 Eigen::ComputeThinU | Eigen::ComputeThinV);
  /external/eigen/bench/
quat_slerp.cpp 3 #include <Eigen/Geometry>
5 using namespace Eigen;
163 cout << "double=>float=>double nlerp eigen legacy(snap) legacy(nlerp) rightway gael's criteria\n";
bench_gemm.cpp 6 #include <Eigen/Core>
10 using namespace Eigen;
209 std::cout << "eigen cpu " << tmt.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(CPU_TIMER) << "s)\n";
210 std::cout << "eigen real " << tmt.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(REAL_TIMER) << "s)\n";
217 Eigen::internal::setNbThreads(1);
220 std::cout << "eigen mono cpu " << tmono.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tmono.total(CPU_TIMER) << "s)\n";
221 std::cout << "eigen mono real " << tmono.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tmono.total(REAL_TIMER) << "s)\n";
  /external/eigen/unsupported/test/
FFTW.cpp 1 // This file is part of Eigen, a lightweight C++ template library
11 #include <unsupported/Eigen/FFT>
17 using namespace Eigen;
187 typedef typename Eigen::FFT<T>::Complex Complex;
189 Eigen::Matrix<Complex,nrows,ncols> src,src2,dst,dst2;
191 src = Eigen::Matrix<Complex,nrows,ncols>::Random();
192 //src = Eigen::Matrix<Complex,nrows,ncols>::Identity();
195 Eigen::Matrix<Complex,nrows,1> tmpOut;
201 Eigen::Matrix<Complex,1,ncols> tmpOut;
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 1 // This file is part of Eigen, a lightweight C++ template library
53 namespace Eigen {
229 Eigen::Matrix<DestScalar,Dynamic,Dynamic> tmp(size,rhsCols);
317 typedef SparseTriangularView<CholMatrixType, Eigen::Lower> MatrixL;
318 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU;
330 typedef SparseTriangularView<CholMatrixType, Eigen::UnitLower> MatrixL;
331 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU;
871 } // end namespace Eigen
  /external/eigen/Eigen/src/Core/
DenseBase.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
22 * and related expression types). The common Eigen API for dense objects is contained in this class.
273 Eigen::Transpose<Derived> transpose();
486 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::DenseBase
516 * Only do it when debugging Eigen, as this borders on paranoiac and could slow compilation down
531 } // end namespace Eigen
MatrixBase.h 1 // This file is part of Eigen, a lightweight C++ template library
14 namespace Eigen {
22 * types. Most of the Eigen API is contained in this class, and its base classes. Other important
23 * classes for the Eigen API are Matrix, and VectorwiseOp.
30 * When writing a function taking Eigen objects as argument, if you want your function
37 void printFirstRow(const Eigen::MatrixBase<Derived>& x)
135 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::MatrixBase
301 NoAlias<Derived,Eigen::MatrixBase > noalias();
509 } // end namespace Eigen
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 28 * Content : Eigen bindings to Intel(R) MKL PARDISO
35 namespace Eigen {
220 Eigen::Matrix<DestScalar,Dynamic,Dynamic,ColMajor> tmp_rhs(size,rhsCols);
221 Eigen::Matrix<DestScalar,Dynamic,Dynamic,ColMajor> tmp_res(size,rhsCols);
390 // //std::cerr << "Eigen: transposition option \"" << transposed << "\" not supported by the PARDISO backend\n";
612 } // end namespace Eigen

Completed in 300 milliseconds

<<11121314151617181920>>