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
/
Cwise_lgamma.cpp
blob
f1c4f503e13a89c355c6d21d400ae0a5c1826c4b
1
#include <Eigen/Core>
2
#include <unsupported/Eigen/SpecialFunctions>
3
#include <iostream>
4
using namespace
Eigen
;
5
int
main
()
6
{
7
Array4d
v
(
0.5
,
10
,
0
,-
1
);
8
std
::
cout
<<
v
.
lgamma
() <<
std
::
endl
;
9
}