int main() { StormEigen::VectorXd vec(4); vec << 1, 2, 4, 8; StormEigen::MatrixXd mat; mat = makeCirculant(vec); std::cout << mat << std::endl; }