OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:decomposition
(Results
1 - 25
of
601
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
HessenbergDecomposition_compute.cpp
4
cout << "The matrix H in the
decomposition
of A is:" << endl << hd.matrixH() << endl;
5
hd.compute(2*A); // re-use hd to compute and store
decomposition
of 2A
6
cout << "The matrix H in the
decomposition
of 2A is:" << endl << hd.matrixH() << endl;
ComplexSchur_compute.cpp
4
cout << "The matrix T in the
decomposition
of A is:" << endl << schur.matrixT() << endl;
6
cout << "The matrix T in the
decomposition
of A^(-1) is:" << endl << schur.matrixT() << endl;
RealSchur_compute.cpp
4
cout << "The matrix T in the
decomposition
of A is:" << endl << schur.matrixT() << endl;
6
cout << "The matrix T in the
decomposition
of A^(-1) is:" << endl << schur.matrixT() << endl;
LeastSquaresQR.cpp
3
cout << "The solution using the QR
decomposition
is:\n"
Tridiagonalization_compute.cpp
5
cout << "The matrix T in the tridiagonal
decomposition
of A is: " << endl;
8
cout << "The matrix T in the tridiagonal
decomposition
of 2A is: " << endl;
LLT_example.cpp
5
LLT<MatrixXd> lltOfA(A); // compute the Cholesky
decomposition
of A
6
MatrixXd L = lltOfA.matrixL(); // retrieve factor L in the
decomposition
Tutorial_solve_reuse_decomposition.cpp
3
PartialPivLU<Matrix3f> luOfA(A); // compute LU
decomposition
of A
/external/eigen/Eigen/src/Core/
Solve.h
15
template<typename
Decomposition
, typename RhsType, typename StorageKind> class SolveImpl;
22
* \tparam
Decomposition
the type of the matrix or decomposion object
32
template<typename
Decomposition
, typename RhsType,typename StorageKind> struct solve_traits;
34
template<typename
Decomposition
, typename RhsType>
35
struct solve_traits<
Decomposition
,RhsType,Dense>
38
Decomposition
::ColsAtCompileTime,
41
Decomposition
::MaxColsAtCompileTime,
45
template<typename
Decomposition
, typename RhsType>
46
struct traits<Solve<
Decomposition
, RhsType> >
47
: traits<typename solve_traits<
Decomposition
,RhsType,typename internal::traits<RhsType>::StorageKind>::PlainObject
[
all
...]
ConditionEstimator.h
36
* \returns an estimate of ||inv(matrix)||_1 given a
decomposition
of
55
template <typename
Decomposition
>
56
typename
Decomposition
::RealScalar rcond_invmatrix_L1_norm_estimate(const
Decomposition
& dec)
58
typedef typename
Decomposition
::MatrixType MatrixType;
59
typedef typename
Decomposition
::Scalar Scalar;
60
typedef typename
Decomposition
::RealScalar RealScalar;
146
* Computing a
decomposition
of a dense matrix takes O(n^3) operations, while
152
* its
decomposition
. Supports the following decompositions: FullPivLU,
157
template <typename
Decomposition
>
[
all
...]
/external/eigen/Eigen/src/IterativeLinearSolvers/
SolveWithGuess.h
15
template<typename
Decomposition
, typename RhsType, typename GuessType> class SolveWithGuess;
22
* \tparam
Decomposition
the type of the matrix or decomposion object
32
template<typename
Decomposition
, typename RhsType, typename GuessType>
33
struct traits<SolveWithGuess<
Decomposition
, RhsType, GuessType> >
34
: traits<Solve<
Decomposition
,RhsType> >
40
template<typename
Decomposition
, typename RhsType, typename GuessType>
41
class SolveWithGuess : public internal::generic_xpr_base<SolveWithGuess<
Decomposition
,RhsType,GuessType>, MatrixXpr, typename internal::traits<RhsType>::StorageKind>::type
46
typedef typename internal::generic_xpr_base<SolveWithGuess<
Decomposition
,RhsType,GuessType>, MatrixXpr, typename internal::traits<RhsType>::StorageKind>::type Base;
49
SolveWithGuess(const
Decomposition
&dec, const RhsType &rhs, const GuessType &guess)
56
EIGEN_DEVICE_FUNC const
Decomposition
& dec() const { return m_dec;
[
all
...]