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
LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git]
/
ground
/
gcs
/
src
/
libs
/
eigen
/
doc
/
snippets
/
Tutorial_AdvancedInitialization_Join.cpp
blob
84e8715cbef3bac93723febc7475697d7198079e
1
RowVectorXd
vec1
(
3
);
2
vec1
<<
1
,
2
,
3
;
3
std
::
cout
<<
"vec1 = "
<<
vec1
<<
std
::
endl
;
4
5
RowVectorXd
vec2
(
4
);
6
vec2
<<
1
,
4
,
9
,
16
;;
7
std
::
cout
<<
"vec2 = "
<<
vec2
<<
std
::
endl
;
8
9
RowVectorXd
joined
(
7
);
10
joined
<<
vec1
,
vec2
;
11
std
::
cout
<<
"joined = "
<<
joined
<<
std
::
endl
;