Searched refs:DenseMatrix (Results 1 - 23 of 23) sorted by relevance

/external/eigen/test/eigen2/
H A Deigen2_sparse_product.cpp20 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
25 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows);
26 DenseMatrix refMat3 = DenseMatrix::Zero(rows, rows);
27 DenseMatrix refMat4 = DenseMatrix::Zero(rows, rows);
28 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows);
58 DenseMatrix refM
[all...]
H A Deigen2_sparse_basic.cpp54 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
59 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
167 DenseMatrix m1(rows,cols);
187 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
202 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
203 DenseMatrix refM2 = DenseMatrix
[all...]
H A Deigen2_sparse_solvers.cpp36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols);
76 DenseMatrix refMat2(rows, cols);
117 DenseMatrix refMat2(rows, cols);
140 DenseMatrix refMat2(rows, cols);
147 LU<DenseMatrix> refLu(refMat2);
H A Deigen2_sparse_vector.cpp16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols);
/external/eigen/test/
H A Dsparse_product.cpp12 template<typename SparseMatrixType, typename DenseMatrix, bool IsRowMajor=SparseMatrixType::IsRowMajor> struct test_outer;
14 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseMatrix,false> {
15 static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& refMat4) {
24 template<typename SparseMatrixType, typename DenseMatrix> struct test_outer<SparseMatrixType,DenseMatrix,true> {
25 static void run(SparseMatrixType& m2, SparseMatrixType& m4, DenseMatrix& refMat2, DenseMatrix& refMat4) {
49 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
[all...]
H A Dsparse_basic.cpp25 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
33 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
135 DenseMatrix m1(rows,cols);
155 DenseMatrix m1(rows,cols);
179 DenseMatrix m1(rows,cols);
200 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows);
241 DenseMatrix refMat2 = DenseMatrix
[all...]
H A Dsparse_solver.h150 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
156 DenseMatrix dM(size, size);
191 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
196 DenseMatrix dA;
205 DenseMatrix dB(size,rhsCols);
250 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
254 DenseMatrix dA;
285 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
291 DenseMatrix dA;
297 DenseMatrix d
335 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
351 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
[all...]
H A Dsparse_solvers.cpp36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols);
81 DenseMatrix refMatB = DenseMatrix::Zero(rows, rows);
H A Dsparse_vector.cpp16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
H A Dsparse_permutations.cpp21 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
28 DenseMatrix mat_d = DenseMatrix::Zero(rows, cols), up_sym_d, lo_sym_d, res_d;
39 VERIFY_IS_APPROX(up, DenseMatrix(mat_d.template triangularView<Upper>()));
40 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>()));
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h116 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef in class:Eigen::DGMRES
224 ComplexVector schurValues(const ComplexSchur<DenseMatrix>& schurofH) const;
225 ComplexVector schurValues(const RealSchur<DenseMatrix>& schurofH) const;
228 mutable DenseMatrix m_V; // Krylov basis vectors
229 mutable DenseMatrix m_H; // Hessenberg matrix
230 mutable DenseMatrix m_Hes; // Initial hessenberg matrix wihout Givens rotations applied
232 mutable DenseMatrix m_U; // Vectors that form the basis of the invariant subspace
233 mutable DenseMatrix m_MU; // matrix operator applied to m_U (for next cycles)
234 mutable DenseMatrix m_T; /* T=U^T*M^{-1}*A*U */
235 mutable PartialPivLU<DenseMatrix> m_lu
[all...]
/external/eigen/unsupported/test/
H A Dsparse_extra.cpp59 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
64 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
119 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
/external/eigen/bench/
H A Dsparse_lu.cpp96 DenseMatrix m1(rows,cols);
101 FullPivLU<DenseMatrix> lu(m1);
H A Dsparse_transpose.cpp52 DenseMatrix m1(rows,cols), m3(rows,cols);
H A DBenchSparseUtil.h23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst)
H A Dsparse_cholesky.cpp103 DenseMatrix m1(rows,cols);
108 // BENCH(LLT<DenseMatrix> chol(m1);)
113 LLT<DenseMatrix> chol(m1);
H A Dsparse_dense_product.cpp72 DenseMatrix m1(rows,cols);
H A Dsparse_product.cpp119 DenseMatrix m1(rows,cols), m2(rows,cols), m3(rows,cols);
H A Dsparse_trisolver.cpp81 DenseMatrix m1(rows,cols);
H A Dspmv.cpp96 DenseMatrix dm(rows,cols), (rows,cols);
/external/eigen/bench/spbench/
H A Dsp_solver.cpp24 typedef Matrix<double, Dynamic, Dynamic> DenseMatrix; typedef
H A Dtest_sparseLU.cpp23 typedef Matrix<scalar, Dynamic, Dynamic> DenseMatrix; typedef
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h666 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix; typedef in struct:Eigen::SparseQRMatrixQReturnType

Completed in 1278 milliseconds