HomeSort by relevance Sort by last modified time
    Searched refs:SquareMatrixType (Results 1 - 13 of 13) sorted by null

  /external/eigen/test/
dontalign.cpp 25 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
31 SquareMatrixType square = SquareMatrixType::Random(rows,rows);
householder.cpp 28 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
68 SquareMatrixType m3(rows,rows), m4(rows,rows);
99 SquareMatrixType hseq_mat = hseq;
100 SquareMatrixType hseq_mat_conj = hseq.conjugate();
101 SquareMatrixType hseq_mat_adj = hseq.adjoint();
102 SquareMatrixType hseq_mat_trans = hseq.transpose();
103 SquareMatrixType m6 = SquareMatrixType::Random(rows, rows);
cholesky.cpp 69 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
75 SquareMatrixType symm = a0 * a0.adjoint();
84 SquareMatrixType symmUp = symm.template triangularView<Upper>();
85 SquareMatrixType symmLo = symm.template triangularView<Lower>();
87 LLT<SquareMatrixType,Lower> chollo(symmLo);
103 LLT<SquareMatrixType,Upper> cholup(symmUp);
153 SquareMatrixType symmUp = symm.template triangularView<Upper>();
154 SquareMatrixType symmLo = symm.template triangularView<Lower>();
156 LDLT<SquareMatrixType,Lower> ldltlo(symmLo);
173 LDLT<SquareMatrixType,Upper> ldltup(symmUp)
    [all...]
integer_types.cpp 71 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
72 SquareMatrixType identity = SquareMatrixType::Identity(rows, rows),
73 square = SquareMatrixType::Random(rows, rows);
diagonalmatrices.cpp 19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType;
38 SquareMatrixType sq_m1 (v1.asDiagonal());
42 SquareMatrixType sq_m2 = v1.asDiagonal();
basicstuff.cpp 19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
33 SquareMatrixType sm1 = SquareMatrixType::Random(rows,rows), sm2(rows,rows);
adjoint.cpp 77 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
86 square = SquareMatrixType::Random(rows, rows);
  /external/eigen/bench/
benchCholesky.cpp 44 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
47 SquareMatrixType covMat = a * a.adjoint();
59 LDLT<SquareMatrixType> cholnosqrt(covMat);
70 LLT<SquareMatrixType> chol(covMat);
benchEigenSolver.cpp 43 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
46 SquareMatrixType covMat = a * a.adjoint();
54 SelfAdjointEigenSolver<SquareMatrixType> ei(covMat);
68 EigenSolver<SquareMatrixType> ei(covMat);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 89 EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime) > SquareMatrixType;
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 806 return BasisReturnType(SquareMatrixType::Identity(newSize,newSize), i);
821 return BasisReturnType(SquareMatrixType::Identity(),i);
MatrixBase.h 95 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType;
118 typedef Block<const CwiseNullaryOp<internal::scalar_identity_op<Scalar>, SquareMatrixType>,
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 136 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType;

Completed in 270 milliseconds