OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matrixH
(Results
1 - 8
of
8
) sorted by null
/external/eigen/doc/snippets/
HessenbergDecomposition_compute.cpp
4
cout << "The matrix H in the decomposition of A is:" << endl << hd.
matrixH
() << endl;
6
cout << "The matrix H in the decomposition of 2A is:" << endl << hd.
matrixH
() << endl;
HessenbergDecomposition_matrixH.cpp
4
MatrixXf H = hessOfA.
matrixH
();
HessenbergDecomposition_packedMatrix.cpp
7
<< endl << hessOfA.
matrixH
() << endl;
/external/eigen/test/
hessenberg.cpp
23
MatrixType H = hess.
matrixH
();
37
VERIFY_IS_EQUAL(cs1.
matrixH
().eval(), cs2.
matrixH
().eval());
44
VERIFY_RAISES_ASSERT( hessUninitialized.
matrixH
() );
/external/eigen/test/eigen2/
eigen2_qr.cpp
39
VERIFY_IS_APPROX(b, hess.matrixQ() * hess.
matrixH
() * hess.matrixQ().adjoint());
40
VERIFY_IS_APPROX(tridiag.matrixT(), hess.
matrixH
());
43
VERIFY_IS_APPROX(b, hess.matrixQ() * hess.
matrixH
() * hess.matrixQ().adjoint());
/external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h
49
* computed, you can use the
matrixH
() and matrixQ() functions to construct
52
* The documentation for
matrixH
() contains an example of the typical use of
116
* \sa
matrixH
() for an example.
230
* \sa
matrixH
() for an example, class HouseholderSequence
260
MatrixHReturnType
matrixH
() const
325
* \brief Expression type for return value of HessenbergDecomposition::
matrixH
()
334
* HessenbergDecomposition::
matrixH
(); there is probably no other use for this
ComplexSchur.h
301
_this.m_matT = _this.m_hess.
matrixH
();
316
_this.m_matT = _this.m_hess.
matrixH
().template cast<ComplexScalar>();
RealSchur.h
210
m_matT = m_hess.
matrixH
();
Completed in 363 milliseconds