COSC-4P80-Assignment-2/lib/eigen-3.4.0/doc/examples/make_circulant.cpp.entry

6 lines
145 B
Plaintext
Raw Normal View History

2024-10-21 16:42:03 -04:00
template <class ArgType>
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
{
return Circulant<ArgType>(arg.derived());
}