OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TriangularView
(Results
1 - 11
of
11
) sorted by null
/external/eigen/Eigen/src/Core/
TriangularMatrix.h
119
/** \class
TriangularView
132
* of MatrixBase::
triangularView
() and most of the time this is the only way it is used.
134
* \sa MatrixBase::
triangularView
()
138
struct traits<
TriangularView
<MatrixType, _Mode> > : traits<MatrixType>
158
template<typename _MatrixType, unsigned int _Mode> class
TriangularView
159
: public TriangularBase<
TriangularView
<_MatrixType, _Mode> >
163
typedef TriangularBase<
TriangularView
> Base;
164
typedef typename internal::traits<
TriangularView
>::Scalar Scalar;
167
typedef typename internal::traits<
TriangularView
>::DenseMatrixType DenseMatrixType;
171
typedef typename internal::traits<
TriangularView
>::MatrixTypeNested MatrixTypeNested
[
all
...]
SolveTriangular.h
162
*
TriangularView
methods
165
/** "in-place" version of
TriangularView
::solve() where the result is written in \a other
170
* See
TriangularView
:solve() for the details.
174
void
TriangularView
<MatrixType,Mode>::solveInPlace(const MatrixBase<OtherDerived>& _other) const
211
* \sa
TriangularView
::solveInPlace()
215
const internal::triangular_solve_retval<Side,
TriangularView
<Derived,Mode>,Other>
216
TriangularView
<Derived,Mode>::solve(const MatrixBase<Other>& other) const
218
return internal::triangular_solve_retval<Side,
TriangularView
,Other>(*this, other.derived());
MatrixBase.h
245
template<unsigned int Mode> struct TriangularViewReturnType { typedef
TriangularView
<Derived, Mode> Type; };
246
template<unsigned int Mode> struct ConstTriangularViewReturnType { typedef const
TriangularView
<const Derived, Mode> Type; };
248
template<unsigned int Mode> typename TriangularViewReturnType<Mode>::Type
triangularView
();
249
template<unsigned int Mode> typename ConstTriangularViewReturnType<Mode>::Type
triangularView
() const;
SelfAdjointView.h
172
m_matrix.const_cast_derived().template
triangularView
<UpLo>() = other;
173
m_matrix.const_cast_derived().template
triangularView
<OtherPart>() = other.adjoint();
177
SelfAdjointView& operator=(const
TriangularView
<OtherMatrixType, OtherMode>& other)
182
m_matrix.const_cast_derived().template
triangularView
<UpLo>() = other.toDenseMatrix();
183
m_matrix.const_cast_derived().template
triangularView
<OtherPart>() = other.toDenseMatrix().adjoint();
/external/eigen/Eigen/src/Eigen2Support/
QR.h
46
const
TriangularView
<MatrixRBlockType, UpperTriangular>
50
return MatrixRBlockType(this->matrixQR(), 0, 0, cols, cols).template
triangularView
<UpperTriangular>();
/external/eigen/Eigen/src/Householder/
BlockHouseholder.h
38
triFactor.col(i).head(i) = triFactor.block(0,0,i,i).template
triangularView
<Upper>()
54
const
TriangularView
<const VectorsType, UnitLower>& V(vectors);
60
tmp = T.template
triangularView
<Upper>().adjoint() * tmp;
/external/eigen/Eigen/src/Cholesky/
LDLT.h
409
typedef const
TriangularView
<const MatrixType, UnitLower> MatrixL;
410
typedef const
TriangularView
<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
417
typedef const
TriangularView
<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL;
418
typedef const
TriangularView
<const MatrixType, UnitUpper> MatrixU;
LLT.h
316
if(rs>0) A11.adjoint().template
triangularView
<Upper>().template solveInPlace<OnTheRight>(A21);
355
typedef const
TriangularView
<const MatrixType, Lower> MatrixL;
356
typedef const
TriangularView
<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
365
typedef const
TriangularView
<const typename MatrixType::AdjointReturnType, Lower> MatrixL;
366
typedef const
TriangularView
<const MatrixType, Upper> MatrixU;
/external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h
185
TriangularView
<MatrixType,UpLo>&
TriangularView
<MatrixType,UpLo>::assignProduct(const ProductBase<ProductDerived, _Lhs,_Rhs>& prod, const Scalar& alpha)
/external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h
115
template<typename MatrixType, unsigned int Mode> class
TriangularView
;
/external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h
490
typedef
TriangularView
<LUMatrixType, Lower|UnitDiag> LMatrixType;
491
typedef
TriangularView
<LUMatrixType, Upper> UMatrixType;
Completed in 362 milliseconds