Sign in
third-party-mirror
/
eigen
/
fuchsia
/
refs/heads/main
/
.
/
doc
/
examples
/
Cwise_lgamma.cpp
blob: 6bfaccbce3bd0761907c17a73e07fa1a738bac2f [
file
] [
log
] [
blame
] [
edit
]
#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
;
}