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
/
failtest
/
bdcsvd_int.cpp
blob
670752cf5928b18ba8a9bf4791d681015ff0d2e5
1
#include
"../Eigen/SVD"
2
3
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
4
#define SCALAR int
5
#else
6
#define SCALAR float
7
#endif
8
9
using namespace
Eigen
;
10
11
int
main
()
12
{
13
BDCSVD
<
Matrix
<
SCALAR
,
Dynamic
,
Dynamic
> >
qr
(
Matrix
<
SCALAR
,
Dynamic
,
Dynamic
>::
Random
(
10
,
10
));
14
}