eigen/doc/examples/make_circulant.cpp.entry

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
145 B
Plaintext
Raw Permalink Normal View History

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