blob: f9d2eb8a9599c06bb96ed1df16c93b2945cf39de [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001template <class ArgType>
2Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
3{
4 return Circulant<ArgType>(arg.derived());
5}