HomeSort by relevance Sort by last modified time
    Searched refs:DenseMatrixType (Results 1 - 7 of 7) sorted by null

  /external/eigen/test/
bandmatrix.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrixType;
25 DenseMatrixType dm1(rows,cols);
sparse_product.cpp 330 template<typename SparseMatrixType, typename DenseMatrixType> void sparse_product_regression_test()
334 DenseMatrixType m2(2,2);
338 DenseMatrixType m3 = sm1*m2;
346 DenseMatrixType m4(sm2*m2);
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 36 typedef Matrix<Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime> DenseMatrixType;
37 typedef DenseMatrixType DenseType;
46 DenseMatrixType toDenseMatrix() const { return derived(); }
BandMatrix.h 34 typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> DenseMatrixType;
35 typedef typename DenseMatrixType::StorageIndex StorageIndex;
145 DenseMatrixType toDenseMatrix() const
147 DenseMatrixType res(rows(),cols());
PermutationMatrix.h 63 DenseMatrixType;
124 DenseMatrixType toDenseMatrix() const
576 typedef typename PermutationType::DenseMatrixType DenseMatrixType;
598 DenseMatrixType toDenseMatrix() const { return derived(); }
TriangularMatrix.h 51 typedef typename internal::traits<Derived>::FullMatrixType DenseMatrixType;
52 typedef DenseMatrixType DenseType;
117 DenseMatrixType toDenseMatrix() const
119 DenseMatrixType res(rows(), cols());
343 typedef typename MatrixType::PlainObject DenseMatrixType;
344 typedef DenseMatrixType PlainObject;
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 133 typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> DenseMatrixType;
365 DenseMatrixType toDense() const
367 return DenseMatrixType(derived());

Completed in 960 milliseconds