Sign in
◑
Theme
eigen
/
mirror
/
4e8047cdcf9a527fa1a0178c370e600eefbcb8b7
/
.
/
doc
/
examples
/
Cwise_lgamma.cpp
blob: 6bfaccbce3bd0761907c17a73e07fa1a738bac2f [
file
]
#include
<
Eigen
/
Core
>
#include
<
unsupported
/
Eigen
/
SpecialFunctions
>
#include
<iostream>
using
namespace
Eigen
;
int
main
()
{
Array4d
v
(
0.5
,
10
,
0
,-
1
);
std
::
cout
<<
v
.
lgamma
()
<<
std
::
endl
;
}