Sign in
eigen
/
mirror
/
8eab7b6886662a0b370eab5af96e8a26fa19f6df
/
.
/
doc
/
examples
/
Cwise_lgamma.cpp
blob: f3c9fe610404f251f5caac8fab86b16b7939eb9e [
file
] [
log
] [
blame
]
#include
<
Eigen
/
Core
>
#include
<
unsupported
/
Eigen
/
SpecialFunctions
>
#include
<iostream>
int
main
()
{
Eigen
::
Array4d
v
(
0.5
,
10
,
0
,-
1
);
std
::
cout
<<
v
.
lgamma
()
<<
std
::
endl
;
}