epfl-archive/cs440-acg/ext/eigen/doc/examples/make_circulant.cpp.entry

6 lines
145 B
Plaintext
Raw Normal View History

2022-04-07 18:46:57 +02:00
template <class ArgType>
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
{
return Circulant<ArgType>(arg.derived());
}