aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/I13_FunctionsTakingEigenTypes.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/I13_FunctionsTakingEigenTypes.dox')
-rw-r--r--doc/I13_FunctionsTakingEigenTypes.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/I13_FunctionsTakingEigenTypes.dox b/doc/I13_FunctionsTakingEigenTypes.dox
index fea6b940f..8f2542632 100644
--- a/doc/I13_FunctionsTakingEigenTypes.dox
+++ b/doc/I13_FunctionsTakingEigenTypes.dox
@@ -111,8 +111,8 @@ The solution which is preferred at the moment is based on a little \em hack. One
template <typename Derived, typename OtherDerived>
void cov(const MatrixBase<Derived>& x, const MatrixBase<Derived>& y, MatrixBase<OtherDerived> EIGEN_REF_TO_TEMPORARY C)
{
- typedef typename ei_traits<Derived>::Scalar Scalar;
- typedef typename ei_plain_row_type<Derived>::type RowVectorType;
+ typedef typename internal::traits<Derived>::Scalar Scalar;
+ typedef typename internal::plain_row_type<Derived>::type RowVectorType;
const Scalar num_observations = static_cast<Scalar>(x.rows());
@@ -141,8 +141,8 @@ This is not the case anymore, when we are using an implementation taking MatrixB
template <typename Derived, typename OtherDerived>
void cov(const MatrixBase<Derived>& x, const MatrixBase<Derived>& y, MatrixBase<OtherDerived> EIGEN_REF_TO_TEMPORARY C_)
{
- typedef typename ei_traits<Derived>::Scalar Scalar;
- typedef typename ei_plain_row_type<Derived>::type RowVectorType;
+ typedef typename internal::traits<Derived>::Scalar Scalar;
+ typedef typename internal::plain_row_type<Derived>::type RowVectorType;
const Scalar num_observations = static_cast<Scalar>(x.rows());