HomeSort by relevance Sort by last modified time
    Searched defs:DenseMatrix (Results 1 - 16 of 16) sorted by null

  /external/eigen/test/eigen2/
eigen2_sparse_solvers.cpp 36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
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);
eigen2_sparse_vector.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols);
eigen2_sparse_product.cpp 20 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
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 refM2 = DenseMatrix::Zero(rows, rows)
    [all...]
eigen2_sparse_basic.cpp 54 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
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::Zero(rows, rows)
    [all...]
  /external/eigen/test/
sparse_solvers.cpp 36 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
49 DenseMatrix refMat2 = DenseMatrix::Zero(rows, cols);
81 DenseMatrix refMatB = DenseMatrix::Zero(rows, rows);
sparse_permutations.cpp 21 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
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>()));
sparse_vector.cpp 16 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
sparse_solver.h 134 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
140 DenseMatrix dM(size, size);
172 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
177 DenseMatrix dA;
186 DenseMatrix dB(size,rhsCols);
231 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
235 DenseMatrix dA;
266 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
272 DenseMatrix dA;
278 DenseMatrix dB(size,rhsCols)
    [all...]
sparse_basic.cpp 25 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
32 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
103 DenseMatrix m1(rows,cols);
123 DenseMatrix m1(rows,cols);
147 DenseMatrix m1(rows,cols);
168 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows);
209 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows)
    [all...]
sparse_product.cpp 12 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;
    [all...]
  /external/eigen/unsupported/test/
sparse_extra.cpp 59 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
64 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
119 DenseMatrix refM1 = DenseMatrix::Zero(rows, rows);
  /external/eigen/bench/
BenchSparseUtil.h 23 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst)
  /external/eigen/bench/spbench/
sp_solver.cpp 24 typedef Matrix<double, Dynamic, Dynamic> DenseMatrix;
test_sparseLU.cpp 23 typedef Matrix<scalar, Dynamic, Dynamic> DenseMatrix;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 116 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;
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_luT; // LU factorization of m_
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 637 typedef Matrix<Scalar,Dynamic,Dynamic> DenseMatrix;

Completed in 351 milliseconds