6 lines
145 B
Text
6 lines
145 B
Text
|
template <class ArgType>
|
||
|
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
|
||
|
{
|
||
|
return Circulant<ArgType>(arg.derived());
|
||
|
}
|