mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +08:00
5 lines
145 B
Plaintext
5 lines
145 B
Plaintext
template <class ArgType>
|
|
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg) {
|
|
return Circulant<ArgType>(arg.derived());
|
|
}
|