mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-23 04:57:41 +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());
|
|
}
|