make_circulant.cpp.entry 145 B

12345
  1. template <class ArgType>
  2. Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
  3. {
  4. return Circulant<ArgType>(arg.derived());
  5. }