mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +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());
|
||
|
}
|