HomeSort by relevance Sort by last modified time
    Searched refs:RowsAtCompileTime (Results 76 - 100 of 148) sorted by null

1 2 34 5 6

  /external/eigen/Eigen/src/Core/
Diagonal.h 44 RowsAtCompileTime = (int(DiagIndex) == DynamicIndex || int(MatrixType::SizeAtCompileTime) == Dynamic) ? Dynamic
45 : (EIGEN_PLAIN_ENUM_MIN(MatrixType::RowsAtCompileTime - EIGEN_PLAIN_ENUM_MAX(-DiagIndex, 0),
Dot.h 24 && ((int(T::RowsAtCompileTime) == 1 && int(U::ColsAtCompileTime) == 1)
27 (int(T::ColsAtCompileTime) == 1 && int(U::RowsAtCompileTime) == 1))
ArrayBase.h 55 using Base::RowsAtCompileTime;
TriangularMatrix.h 33 RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime,
38 SizeAtCompileTime = (internal::size_at_compile_time<internal::traits<Derived>::RowsAtCompileTime,
42 * known at compile-time. \sa RowsAtCompileTime, ColsAtCompileTime */
    [all...]
  /external/eigen/test/
qr_fullpivoting.cpp 26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> MatrixQType;
triangular.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
120 Matrix<Scalar, Dynamic, MatrixType::RowsAtCompileTime> m6(internal::random<int>(1,20), rows); m6.setRandom();
140 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime };
bdcsvd.cpp 41 enum { Size = MatrixType::RowsAtCompileTime };
eigensolver_generalized_real.cpp 27 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
jacobisvd.cpp 63 enum { Size = MatrixType::RowsAtCompileTime };
nesting_ops.cpp 54 Matrix<Scalar,MatrixType::RowsAtCompileTime,MatrixType::ColsAtCompileTime,ColMajor> m2;
product.h 26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> RowVectorType;
28 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> RowSquareMatrixType;
30 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime,
product_syrk.cpp 16 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime, RowMajor> RMatrixType;
18 typedef Matrix<Scalar, Dynamic, MatrixType::RowsAtCompileTime> Rhs2;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 334 static const int RowsAtCompileTime = Traits::RowsAtCompileTime;
337 typedef Matrix<Scalar, Dynamic, Dynamic, Options, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
406 static const int Rows = Traits::RowsAtCompileTime, Cols = Traits::ColsAtCompileTime;
452 Matrix<Index, Traits::RowsAtCompileTime, 1> permutation;
508 static const int RowsAtCompileTime = Traits::RowsAtCompileTime;
511 typedef Matrix<ComplexScalar, Dynamic, Dynamic, 0, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
MatrixLogarithm.h 335 static const int RowsAtCompileTime = Traits::RowsAtCompileTime;
338 typedef Matrix<ComplexScalar, Dynamic, Dynamic, 0, RowsAtCompileTime, ColsAtCompileTime> DynMatrixType;
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 55 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
65 typedef Matrix<Scalar, RowsAtCompileTime, 1, 0, MaxRowsAtCompileTime, 1> TmpMatrixType;
67 typedef Transpositions<RowsAtCompileTime, MaxRowsAtCompileTime> TranspositionType;
68 typedef PermutationMatrix<RowsAtCompileTime, MaxRowsAtCompileTime> PermutationType;
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 390 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? convert_index(i) : 0),
416 return m_matrix.coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
417 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
422 return m_matrix.coeff(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
423 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
440 const internal::variable_if_dynamic<Index, XprType::RowsAtCompileTime == 1 ? 0 : Dynamic> m_startRow;
442 const internal::variable_if_dynamic<Index, RowsAtCompileTime> m_blockRows;
SparseDiagonalProduct.h 98 typedef typename nested_eval<DiagCoeffType,SparseXprType::IsRowMajor ? SparseXprType::RowsAtCompileTime
  /external/eigen/Eigen/src/LU/
InverseImpl.h 22 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
32 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
374 RowsAtCompileTime == 2,
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 65 Size = MatrixType::RowsAtCompileTime,
RealSchur.h 59 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
83 explicit RealSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 179 EIGEN_STATIC_ASSERT(Derived::RowsAtCompileTime==2 && Derived::ColsAtCompileTime==2,YOU_MADE_A_PROGRAMMING_MISTAKE)
Transform.h 34 : int(MatrixType::RowsAtCompileTime) == int(transform_traits<TransformType>::HDim) ? 1
44 int OtherRows=Other::RowsAtCompileTime,
60 int OtherRows=Other::RowsAtCompileTime,
74 RowsAtCompileTime = _Mode==Projective ? Dim1 : _Dim,
76 MaxRowsAtCompileTime = RowsAtCompileTime,
    [all...]
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 63 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
75 EIGEN_SIZE_MIN_PREFER_DYNAMIC(ColsAtCompileTime,RowsAtCompileTime), RowMajor, 1,
601 typedef Matrix<typename MatrixType::Scalar, 1, MatrixType::RowsAtCompileTime, RowMajor, 1,
CompleteOrthogonalDecomposition.h 52 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 14 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ColXpr;
15 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ConstColXpr;
20 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ColsBlockXpr;
21 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ConstColsBlockXpr;
26 template<int N> struct NColsBlockXpr { typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, N, !IsRowMajor> Type; };
27 template<int N> struct ConstNColsBlockXpr { typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, N, !IsRowMajor> Type; };
    [all...]

Completed in 1377 milliseconds

1 2 34 5 6