mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
bug #86 : use internal:: namespace instead of ei_ prefix
This commit is contained in:
@@ -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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user