Searched refs:DenseMatrixType (Results 1 – 9 of 9) sorted by relevance
/aosp_15_r20/external/eigen/test/ |
H A D | diagonal_matrix_variadic_ctor.cpp | 38 DIAGTYPE::DenseMatrixType Dense = d.toDenseMatrix(); \ 45 DIAGTYPE::DenseMatrixType Dense = d.toDenseMatrix(); \ 53 DIAGTYPE::DenseMatrixType Dense = d.toDenseMatrix(); \ 76 typename DiagonalMatrix0::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 83 typename DiagonalMatrix3::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 90 typename DiagonalMatrix4::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 99 typename DiagonalMatrixX::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 106 typename DiagonalMatrixX::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 130 typename DiagonalMatrix0::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() 137 typename DiagonalMatrix3::DenseMatrixType m = a.toDenseMatrix(); in constructorTest() [all …]
|
H A D | bandmatrix.cpp | 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrixType; in bandmatrix() typedef 25 DenseMatrixType dm1(rows,cols); in bandmatrix()
|
H A D | sparse_product.cpp | 338 template<typename SparseMatrixType, typename DenseMatrixType> void sparse_product_regression_test() in sparse_product_regression_test() 342 DenseMatrixType m2(2,2); in sparse_product_regression_test() 346 DenseMatrixType m3 = sm1*m2; in sparse_product_regression_test() 354 DenseMatrixType m4(sm2*m2); in sparse_product_regression_test()
|
/aosp_15_r20/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
H A D | IDRS.h | 66 typedef Matrix<Scalar, Dynamic, Dynamic, ColMajor> DenseMatrixType; in idrs() typedef 75 FullPivLU<DenseMatrixType> lu_solver; in idrs() 77 DenseMatrixType P; in idrs() 79 HouseholderQR<DenseMatrixType> qr(DenseMatrixType::Random(N, S)); in idrs() 80 P = (qr.householderQ() * DenseMatrixType::Identity(N, S)); in idrs() 130 DenseMatrixType G = DenseMatrixType::Zero(N, S); in idrs() 131 DenseMatrixType U = DenseMatrixType::Zero(N, S); in idrs() 132 DenseMatrixType M = DenseMatrixType::Identity(S, S); in idrs()
|
/aosp_15_r20/external/eigen/Eigen/src/Core/ |
H A D | PermutationMatrix.h | 63 DenseMatrixType; typedef 113 DenseMatrixType toDenseMatrix() const in toDenseMatrix() 548 typedef typename PermutationType::DenseMatrixType DenseMatrixType; 570 DenseMatrixType toDenseMatrix() const { return derived(); }
|
H A D | BandMatrix.h | 34 typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> DenseMatrixType; typedef 35 typedef typename DenseMatrixType::StorageIndex StorageIndex; 145 DenseMatrixType toDenseMatrix() const in toDenseMatrix() 147 DenseMatrixType res(rows(),cols()); in toDenseMatrix()
|
H A D | DiagonalMatrix.h | 36 …wsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime> DenseMatrixType; typedef 37 typedef DenseMatrixType DenseType; 46 DenseMatrixType toDenseMatrix() const { return derived(); } in toDenseMatrix()
|
H A D | TriangularMatrix.h | 51 typedef typename internal::traits<Derived>::FullMatrixType DenseMatrixType; typedef 52 typedef DenseMatrixType DenseType; 118 DenseMatrixType toDenseMatrix() const in toDenseMatrix() 120 DenseMatrixType res(rows(), cols()); in toDenseMatrix() 355 typedef typename MatrixType::PlainObject DenseMatrixType; 356 typedef DenseMatrixType PlainObject;
|
/aosp_15_r20/external/eigen/Eigen/src/SparseCore/ |
H A D | SparseMatrixBase.h | 138 typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> DenseMatrixType; typedef 358 DenseMatrixType toDense() const in toDense() 360 return DenseMatrixType(derived()); in toDense()
|