OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SquareMatrixType
(Results
1 - 15
of
15
) sorted by null
/external/eigen/test/eigen2/
eigen2_qr.cpp
22
typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime>
SquareMatrixType
;
31
SquareMatrixType
b = a.adjoint() * a;
34
Tridiagonalization<
SquareMatrixType
> tridiag(b);
38
HessenbergDecomposition<
SquareMatrixType
> hess(b);
41
b =
SquareMatrixType
::Random(cols,cols);
eigen2_adjoint.cpp
21
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
33
identity =
SquareMatrixType
::Identity(rows, rows),
34
square =
SquareMatrixType
::Random(rows, rows);
eigen2_cholesky.cpp
29
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
35
SquareMatrixType
symm = a0 * a0.adjoint();
69
LDLT<
SquareMatrixType
> ldlt(symm);
80
LLT<
SquareMatrixType
> chol(symm);
93
SquareMatrixType
symm = a0.block(0,0,rows,cols-4) * a0.block(0,0,rows,cols-4).adjoint();
94
LLT<
SquareMatrixType
> chol(symm);
96
LDLT<
SquareMatrixType
> cholnosqrt(symm);
/external/eigen/test/
dontalign.cpp
25
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
31
SquareMatrixType
square =
SquareMatrixType
::Random(rows,rows);
adjoint.cpp
23
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
31
square =
SquareMatrixType
::Random(rows, rows);
diagonalmatrices.cpp
20
typedef Matrix<Scalar, Rows, Rows>
SquareMatrixType
;
36
SquareMatrixType
sq_m1 (v1.asDiagonal());
40
SquareMatrixType
sq_m2 = v1.asDiagonal();
householder.cpp
28
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
70
SquareMatrixType
m3(rows,rows), m4(rows,rows);
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);
basicstuff.cpp
19
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
33
SquareMatrixType
sm1 =
SquareMatrixType
::Random(rows,rows), sm2(rows,rows);
cholesky.cpp
72
typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
SquareMatrixType
;
78
SquareMatrixType
symm = a0 * a0.adjoint();
86
SquareMatrixType
symmUp = symm.template triangularView<Upper>();
87
SquareMatrixType
symmLo = symm.template triangularView<Lower>();
94
LLT<
SquareMatrixType
,Lower> chollo(symmLo);
102
LLT<
SquareMatrixType
,Upper> cholup(symmUp);
128
SquareMatrixType
symmUp = symm.template triangularView<Upper>();
129
SquareMatrixType
symmLo = symm.template triangularView<Lower>();
131
LDLT<
SquareMatrixType
,Lower> ldltlo(symmLo);
138
LDLT<
SquareMatrixType
,Upper> ldltup(symmUp)
[
all
...]
/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/
MatrixBase.h
96
EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)>
SquareMatrixType
;
130
typedef Block<const CwiseNullaryOp<internal::scalar_identity_op<Scalar>,
SquareMatrixType
>,
/external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h
126
EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)>
SquareMatrixType
;
Completed in 698 milliseconds