OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatrixFunctionReturnValue
(Results
1 - 3
of
3
) sorted by null
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h
488
template<typename Derived> class
MatrixFunctionReturnValue
489
: public ReturnByValue<
MatrixFunctionReturnValue
<Derived> >
503
MatrixFunctionReturnValue
(const Derived& A, StemFunction f) : m_A(A), m_f(f) { }
535
MatrixFunctionReturnValue
& operator=(const
MatrixFunctionReturnValue
&);
540
struct traits<
MatrixFunctionReturnValue
<Derived> >
551
const
MatrixFunctionReturnValue
<Derived> MatrixBase<Derived>::matrixFunction(typename internal::stem_function<typename internal::traits<Derived>::Scalar>::type f) const
554
return
MatrixFunctionReturnValue
<Derived>(derived(), f);
558
const
MatrixFunctionReturnValue
<Derived> MatrixBase<Derived>::sin() const
562
return
MatrixFunctionReturnValue
<Derived>(derived(), StdStemFunctions<ComplexScalar>::sin)
[
all
...]
/external/eigen/Eigen/src/Core/
MatrixBase.h
447
const
MatrixFunctionReturnValue
<Derived> matrixFunction(StemFunction f) const;
448
const
MatrixFunctionReturnValue
<Derived> cosh() const;
449
const
MatrixFunctionReturnValue
<Derived> sinh() const;
450
const
MatrixFunctionReturnValue
<Derived> cos() const;
451
const
MatrixFunctionReturnValue
<Derived> sin() const;
/external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h
270
template<typename Derived> class
MatrixFunctionReturnValue
;
Completed in 7010 milliseconds