Home
last modified time | relevance | path

Searched refs:DenseMatrix (Results 1 – 20 of 20) sorted by relevance

/external/eigen/test/
Dsparse_product.cpp41 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_product() typedef
52 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth); in sparse_product()
53 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows); in sparse_product()
54 DenseMatrix refMat3 = DenseMatrix::Zero(depth, cols); in sparse_product()
55 DenseMatrix refMat3t = DenseMatrix::Zero(cols, depth); in sparse_product()
56 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols); in sparse_product()
57 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows); in sparse_product()
58 DenseMatrix refMat5 = DenseMatrix::Random(depth, cols); in sparse_product()
59 DenseMatrix refMat6 = DenseMatrix::Random(rows, rows); in sparse_product()
60 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows); in sparse_product()
[all …]
Dsparse_basic.cpp32 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_basic() typedef
39 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_basic()
69 DenseMatrix m1(rows,cols); in sparse_basic()
103 DenseMatrix m1(rows,cols); in sparse_basic()
127 DenseMatrix m1(rows,cols); in sparse_basic()
148 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols); in sparse_basic()
149 DenseMatrix refM2 = DenseMatrix::Zero(rows, cols); in sparse_basic()
150 DenseMatrix refM3 = DenseMatrix::Zero(rows, cols); in sparse_basic()
151 DenseMatrix refM4 = DenseMatrix::Zero(rows, cols); in sparse_basic()
276 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_basic()
[all …]
Dsparse_solver.h215 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
221 DenseMatrix dM(size, size);
276 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
281 DenseMatrix dA;
290 DenseMatrix dB(size,rhsCols);
358 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in check_sparse_spd_determinant() typedef
362 DenseMatrix dA; in check_sparse_spd_determinant()
405 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
411 DenseMatrix dA;
417 DenseMatrix dB(size,rhsCols);
[all …]
Dsparse_solvers.cpp36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_solvers() typedef
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_solvers()
81 DenseMatrix refMatB = DenseMatrix::Zero(rows, rows); in sparse_solvers()
Dsparse_block.cpp37 typedef Matrix<Scalar,Dynamic,Dynamic,SparseMatrixType::IsRowMajor?RowMajor:ColMajor> DenseMatrix; in sparse_block() typedef
45 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_block()
123 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block()
186 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block()
219 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols); in sparse_block()
266 DenseMatrix refMat3(rows, cols); refMat3.setZero(); in sparse_block()
Dsparse_permutations.cpp51 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_permutations() typedef
60 DenseMatrix mat_d = DenseMatrix::Zero(rows, cols), up_sym_d, lo_sym_d, res_d; in sparse_permutations()
71 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>())); in sparse_permutations()
72 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>())); in sparse_permutations()
Dsparse_vector.cpp16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_vector() typedef
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows); in sparse_vector()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DDGMRES.h119 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
211 ComplexVector schurValues(const ComplexSchur<DenseMatrix>& schurofH) const;
212 ComplexVector schurValues(const RealSchur<DenseMatrix>& schurofH) const;
215 mutable DenseMatrix m_V; // Krylov basis vectors
216 mutable DenseMatrix m_H; // Hessenberg matrix
217 mutable DenseMatrix m_Hes; // Initial hessenberg matrix wihout Givens rotations applied
219 mutable DenseMatrix m_U; // Vectors that form the basis of the invariant subspace
220 mutable DenseMatrix m_MU; // matrix operator applied to m_U (for next cycles)
221 mutable DenseMatrix m_T; /* T=U^T*M^{-1}*A*U */
222 mutable PartialPivLU<DenseMatrix> m_luT; // LU factorization of m_T
[all …]
/external/eigen/unsupported/test/
Dsparse_extra.cpp58 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; in sparse_extra() typedef
63 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); in sparse_extra()
/external/eigen/bench/
Dsparse_lu.cpp96 DenseMatrix m1(rows,cols); in main()
101 FullPivLU<DenseMatrix> lu(m1); in main()
DBenchSparseUtil.h23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst) in eiToDense()
Dsparse_cholesky.cpp103 DenseMatrix m1(rows,cols); in main()
113 LLT<DenseMatrix> chol(m1); in main()
Dsparse_transpose.cpp52 DenseMatrix m1(rows,cols), m3(rows,cols); in main()
Dsparse_dense_product.cpp72 DenseMatrix m1(rows,cols); in main()
Dsparse_product.cpp119 DenseMatrix m1(rows,cols), m2(rows,cols), m3(rows,cols); in main()
Dsparse_trisolver.cpp81 DenseMatrix m1(rows,cols); in main()
Dspmv.cpp96 DenseMatrix dm(rows,cols), (rows,cols); in main()
/external/eigen/bench/spbench/
Dsp_solver.cpp24 typedef Matrix<double, Dynamic, Dynamic> DenseMatrix; in main() typedef
Dtest_sparseLU.cpp23 typedef Matrix<scalar, Dynamic, Dynamic> DenseMatrix; in main() typedef
/external/eigen/Eigen/src/SparseQR/
DSparseQR.h660 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;