Home
last modified time | relevance | path

Searched refs:DenseMatrixType (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/eigen/test/
H A Ddiagonal_matrix_variadic_ctor.cpp38 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 Dbandmatrix.cpp16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrixType; in bandmatrix() typedef
25 DenseMatrixType dm1(rows,cols); in bandmatrix()
H A Dsparse_product.cpp338 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 DIDRS.h66 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 DPermutationMatrix.h63 DenseMatrixType; typedef
113 DenseMatrixType toDenseMatrix() const in toDenseMatrix()
548 typedef typename PermutationType::DenseMatrixType DenseMatrixType;
570 DenseMatrixType toDenseMatrix() const { return derived(); }
H A DBandMatrix.h34 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 DDiagonalMatrix.h36 …wsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime> DenseMatrixType; typedef
37 typedef DenseMatrixType DenseType;
46 DenseMatrixType toDenseMatrix() const { return derived(); } in toDenseMatrix()
H A DTriangularMatrix.h51 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 DSparseMatrixBase.h138 typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> DenseMatrixType; typedef
358 DenseMatrixType toDense() const in toDense()
360 return DenseMatrixType(derived()); in toDense()