blob: f3c9fe610404f251f5caac8fab86b16b7939eb9e [file] [log] [blame]
Googler45874d82019-08-21 12:06:47 -07001#include <Eigen/Core>
2#include <unsupported/Eigen/SpecialFunctions>
3#include <iostream>
Googler45874d82019-08-21 12:06:47 -07004int main()
5{
Rasmus Munk Larsen51987b82022-01-04 12:15:59 -08006 Eigen::Array4d v(0.5,10,0,-1);
Googler45874d82019-08-21 12:06:47 -07007 std::cout << v.lgamma() << std::endl;
8}