OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BandMatrix
(Results
1 - 4
of
4
) sorted by null
/external/eigen/test/
bandmatrix.cpp
12
template<typename MatrixType> void
bandmatrix
(const MatrixType& _m)
function
61
using Eigen::internal::
BandMatrix
;
65
typedef
BandMatrix
<float>::Index Index;
72
CALL_SUBTEST(
bandmatrix
(
BandMatrix
<float>(rows,cols,sups,subs)) );
/external/eigen/Eigen/src/Core/
BandMatrix.h
159
* \class
BandMatrix
178
struct traits<
BandMatrix
<_Scalar,_Rows,_Cols,_Supers,_Subs,_Options> >
199
class
BandMatrix
: public BandMatrixBase<
BandMatrix
<_Scalar,Rows,Cols,Supers,Subs,Options> >
203
typedef typename internal::traits<
BandMatrix
>::Scalar Scalar;
204
typedef typename internal::traits<
BandMatrix
>::Index Index;
205
typedef typename internal::traits<
BandMatrix
>::CoefficientsType CoefficientsType;
207
inline
BandMatrix
(Index rows=Rows, Index cols=Cols, Index supers=Supers, Index subs=Subs)
309
* \sa class
BandMatrix
312
class TridiagonalMatrix : public
BandMatrix
<Scalar,Size,Size,Options&SelfAdjoint?0:1,1,Options|RowMajor
[
all
...]
/external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h
17
// At the same time, it's useful to keep for now as it's about the only thing that is testing the
BandMatrix
class.
34
typedef
BandMatrix
<RealScalar, ColsAtCompileTime, ColsAtCompileTime, 1, 0> BidiagonalType;
/external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h
134
template<typename _Scalar, int Rows=Dynamic, int Cols=Dynamic, int Supers=Dynamic, int Subs=Dynamic, int Options=0> class
BandMatrix
;
Completed in 1287 milliseconds