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

1 2 3 45 6

  /external/eigen/Eigen/src/Eigenvalues/
ComplexEigenSolver.h 78 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options&(~RowMajor), MaxColsAtCompileTime, 1> EigenvalueType;
EigenSolver.h 97 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
308 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
RealSchur.h 69 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
70 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
  /external/eigen/demos/opengl/
gpuhelper.h 116 template<bool RowMajor, int _Flags> struct GlMatrixHelper;
  /external/eigen/test/eigen2/
eigen2_triangular.cpp 146 CALL_SUBTEST_7( triangular(Matrix<float,Dynamic,Dynamic,RowMajor>(5, 5)) );
product.h 34 MatrixType::Options^RowMajor> OtherMajorMatrixType;
  /external/eigen/test/
eigensolver_selfadjoint.cpp 144 CALL_SUBTEST_9( selfadjointeigensolver(Matrix<std::complex<double>,Dynamic,Dynamic,RowMajor>(s,s)) );
product_symm.cpp 17 enum { order = OtherSize==1 ? 0 : RowMajor };
product_trmv.cpp 86 CALL_SUBTEST_6( trmv(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
visitor.cpp 120 CALL_SUBTEST_5( matrixVisitor(Matrix<double,Dynamic,Dynamic,RowMajor>(20, 20)) );
product.h 32 MatrixType::Flags&RowMajorBit?ColMajor:RowMajor> OtherMajorMatrixType;
product_extra.cpp 132 Matrix<float,1,Dynamic,RowMajor,1,5> a(1,4);
product_notemporary.cpp 39 typedef Matrix<Scalar, Dynamic, Dynamic, RowMajor> RowMajorMatrixType;
sparse_basic.cpp 501 CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double>, RowMajor>(s, s)) ));
504 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double,RowMajor,long int>(s, s)) ));
507 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double,RowMajor,short int>(short(s), short(s))) ));
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 124 SparseMatrix<Scalar,RowMajor> CINV(C.rows(), C.cols());
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMqrsolv.h 112 typedef SparseMatrix<Scalar,RowMajor,Index> FactorType;
  /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 133 CALL_SUBTEST_7(randomTest(Matrix<double,3,3,RowMajor>(), 1e-13));
matrix_function.cpp 190 CALL_SUBTEST_5(testMatrixType(Matrix<double,5,5,RowMajor>()));
matrix_power.cpp 112 typedef Matrix<double,3,3,RowMajor> Matrix3dRowMajor;
  /external/ceres-solver/examples/
nist.cc 123 using Eigen::RowMajor;
125 typedef Eigen::Matrix<double, Dynamic, Dynamic, RowMajor> Matrix;
ellipse_approximation.cc 386 Eigen::RowMajor> MatrixXd;
  /external/eigen/Eigen/src/Core/util/
Macros.h 90 #define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION RowMajor
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 57 typedef Matrix<Scalar, RowsAtCompileTime, RowsAtCompileTime, (MatrixType::Flags&RowMajorBit) ? RowMajor : ColMajor, MaxRowsAtCompileTime, MaxRowsAtCompileTime> MatrixQType;

Completed in 527 milliseconds

1 2 3 45 6