10 lines
192 B
C++
10 lines
192 B
C++
|
#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;
|
||
|
}
|