Sign in
third-party-mirror
/
eigen
/
2bbd4a870ad457f7745d83d77f82cfc135ab4ea4
/
.
/
doc
/
examples
/
Cwise_lgamma.cpp
blob: 10866d880a629efbb5eb40b3fbd8ab9e259a5848 [
file
]
#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
;
}