HomeSort by relevance Sort by last modified time
    Searched refs:RowMajor (Results 101 - 125 of 133) sorted by null

1 2 3 45 6

  /external/eigen/test/
product.h 33 MatrixType::Flags&RowMajorBit?ColMajor:RowMajor> OtherMajorMatrixType;
product_symm.cpp 19 enum { order = OtherSize==1 ? 0 : RowMajor };
product_syrk.cpp 19 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, Dynamic,RowMajor> Rhs3;
product_trmv.cpp 86 CALL_SUBTEST_6( trmv(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
sparse_basic.cpp 390 CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double>, RowMajor>(s, s)) ));
393 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double,RowMajor,long int>(s, s)) ));
product_extra.cpp 133 Matrix<float,1,Dynamic,RowMajor,1,5> a(1,4);
product_notemporary.cpp 39 typedef Matrix<Scalar, Dynamic, Dynamic, RowMajor> RowMajorMatrixType;
block.cpp 219 CALL_SUBTEST_7( data_and_stride(Matrix<int,Dynamic,Dynamic,RowMajor>(internal::random(5,50), internal::random(5,50))) );
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 124 SparseMatrix<Scalar,RowMajor> CINV(C.rows(), C.cols());
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 29 * is RowMajor. The default is 0 which means column-major.
740 m_id(_Options == RowMajor ? mat.m_colStartIndex[outer] : mat.m_rowStartIndex[outer] + 1),
742 m_end(_Options == RowMajor ? mat.m_colStartIndex[outer + 1] : mat.m_rowStartIndex[outer + 1] + 1) {
803 m_id(_Options == RowMajor ? mat.m_rowStartIndex[outer] : mat.m_colStartIndex[outer] + 1),
805 m_end(_Options == RowMajor ? mat.m_rowStartIndex[outer + 1] : mat.m_colStartIndex[outer + 1] + 1) {
SkylineProduct.h 253 struct skyline_product_selector<Lhs, Rhs, ResultType, RowMajor> {
  /external/eigen/unsupported/test/
matrix_exponential.cpp 141 CALL_SUBTEST_7(randomTest(Matrix<double,3,3,RowMajor>(), 1e-13));
matrix_function.cpp 191 CALL_SUBTEST_5(testMatrixType(Matrix<double,5,5,RowMajor>()));
  /external/ceres-solver/examples/
nist.cc 123 using Eigen::RowMajor;
125 typedef Eigen::Matrix<double, Dynamic, Dynamic, RowMajor> Matrix;
  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 97 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
295 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
SelfAdjointEigenSolver.h 443 internal::tridiagonal_qr_step<MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor>(diag.data(), m_subdiag.data(), start, end, computeEigenvectors ? m_eivec.data() : (Scalar*)0, n);
778 // FIXME if StorageOrder == RowMajor this operation is not very efficient
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 66 typedef Matrix<Index, 1, ColsAtCompileTime, RowMajor, 1, MaxColsAtCompileTime> IntRowVectorType;
525 typedef Matrix<typename MatrixType::Scalar, 1, MatrixType::RowsAtCompileTime, RowMajor, 1,
HouseholderQR.h 57 typedef Matrix<Scalar, RowsAtCompileTime, RowsAtCompileTime, (MatrixType::Flags&RowMajorBit) ? RowMajor : ColMajor, MaxRowsAtCompileTime, MaxRowsAtCompileTime> MatrixQType;
  /external/eigen/Eigen/src/Core/util/
Macros.h 90 #define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION RowMajor
  /external/ceres-solver/internal/ceres/
dogleg_strategy.cc 693 Eigen::Matrix<double, 2, Eigen::Dynamic, Eigen::RowMajor>
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 162 SparseMatrix<Scalar, IsRowMajor ? RowMajor : ColMajor, Index> tmp(other);
SparseMatrixBase.h 105 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor> PlainObject;
  /external/eigen/Eigen/src/Core/
MatrixBase.h 112 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 107 typedef SparseMatrix<Scalar,RowMajor,Index> SparseMatrixType;
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 287 struct general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjugateLhs,RhsScalar,ConjugateRhs,Version>

Completed in 1405 milliseconds

1 2 3 45 6