Files
smart_wasm/third_party/eigen3/doc/examples/make_circulant.cpp.entry
2026-06-01 16:57:39 +08:00

6 lines
145 B
Plaintext

template <class ArgType>
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
{
return Circulant<ArgType>(arg.derived());
}