Skip to content
make_circulant.cpp.entry 145 B
Newer Older
Luker's avatar
Luker committed
template <class ArgType>
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
{
  return Circulant<ArgType>(arg.derived());
}