HomeSort by relevance Sort by last modified time
    Searched refs:RowMajor (Results 151 - 175 of 201) sorted by null

1 2 3 4 5 67 8 9

  /external/eigen/demos/opengl/
gpuhelper.h 116 template<bool RowMajor, int _Flags> struct GlMatrixHelper;
  /external/eigen/test/
array_reverse.cpp 138 CALL_SUBTEST_9( reverse(Matrix<float,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
product_large.cpp 40 CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
product_mmtr.cpp 31 typedef Matrix<Scalar,Dynamic,Dynamic,RowMajor> MatrixRowMaj;
product_symm.cpp 17 enum { order = OtherSize==1 ? 0 : RowMajor };
product_trmv.cpp 88 CALL_SUBTEST_6( trmv(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
visitor.cpp 125 CALL_SUBTEST_5( matrixVisitor(Matrix<double,Dynamic,Dynamic,RowMajor>(20, 20)) );
sparse_basic.cpp 655 CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double>, RowMajor>(r, c)) ));
658 CALL_SUBTEST_5(( sparse_basic(SparseMatrix<double,RowMajor,long int>(r, c)) ));
667 CALL_SUBTEST_6(( sparse_basic(SparseMatrix<double,RowMajor,short int>(short(r), short(c))) ));
671 CALL_SUBTEST_3((big_sparse_triplet<SparseMatrix<float, RowMajor, int> >(10000, 10000, 0.125)));
  /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 111 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/
cxx11_tensor_patch.cpp 170 CALL_SUBTEST(test_simple_patch<RowMajor>());
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>()));
cxx11_tensor_ref.cpp 15 using Eigen::RowMajor;
matrix_power.cpp 149 typedef Matrix<double,3,3,RowMajor> Matrix3dRowMajor;
  /external/eigen/Eigen/src/Core/
DenseBase.h 183 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
193 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
PlainObjectBase.h     [all...]
  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 97 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
319 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/Eigen/src/QR/
FullPivHouseholderQR.h 75 EIGEN_SIZE_MIN_PREFER_DYNAMIC(ColsAtCompileTime,RowsAtCompileTime), RowMajor, 1,
601 typedef Matrix<typename MatrixType::Scalar, 1, MatrixType::RowsAtCompileTime, RowMajor, 1,
HouseholderQR.h 59 typedef Matrix<Scalar, RowsAtCompileTime, RowsAtCompileTime, (MatrixType::Flags&RowMajorBit) ? RowMajor : ColMajor, MaxRowsAtCompileTime, MaxRowsAtCompileTime> MatrixQType;
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockSparseMatrix.h 303 typedef Matrix<Scalar, _BlockAtCompileTime, _BlockAtCompileTime,IsColMajor ? ColMajor : RowMajor> BlockScalar;
304 typedef Matrix<RealScalar, _BlockAtCompileTime, _BlockAtCompileTime,IsColMajor ? ColMajor : RowMajor> BlockRealScalar;
306 typedef BlockSparseMatrix<Scalar, BlockSize, IsColMajor ? ColMajor : RowMajor, StorageIndex> PlainObject;
    [all...]
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 114 typedef SparseMatrix<Scalar,RowMajor,StorageIndex> SparseMatrixType;

Completed in 314 milliseconds

1 2 3 4 5 67 8 9