1 template <class ArgType>
2 class Circulant : public Eigen::MatrixBase<Circulant<ArgType> >
5 Circulant(const ArgType& arg)
8 EIGEN_STATIC_ASSERT(ArgType::ColsAtCompileTime == 1,
9 YOU_TRIED_CALLING_A_VECTOR_METHOD_ON_A_MATRIX);
12 typedef typename Eigen::internal::ref_selector<Circulant>::type Nested;
14 typedef Eigen::Index Index;
15 Index rows() const { return m_arg.rows(); }
16 Index cols() const { return m_arg.rows(); }
18 typedef typename Eigen::internal::ref_selector<ArgType>::type ArgTypeNested;