mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-27 07:29:52 +08:00
6 lines
145 B
Plaintext
6 lines
145 B
Plaintext
|
template <class ArgType>
|
||
|
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
|
||
|
{
|
||
|
return Circulant<ArgType>(arg.derived());
|
||
|
}
|