Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / examples / make_circulant.cpp.main
blob877f97f62abb858821275ac048fe33e7b52c97e8
1 int main()
3   Eigen::VectorXd vec(4);
4   vec << 1, 2, 4, 8;
5   Eigen::MatrixXd mat;
6   mat = makeCirculant(vec);
7   std::cout << mat << std::endl;