repo.or.cz
/
librepilot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git]
/
ground
/
gcs
/
src
/
libs
/
eigen
/
doc
/
examples
/
make_circulant.cpp.main
blob
877f97f62abb858821275ac048fe33e7b52c97e8
1
int main()
2
{
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;
8
}