xref: /aosp_15_r20/external/eigen/doc/examples/make_circulant.cpp.entry (revision bf2c37156dfe67e5dfebd6d394bad8b2ab5804d4)
1template <class ArgType>
2Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
3{
4  return Circulant<ArgType>(arg.derived());
5}
6