Austin Schuh | 189376f | 2018-12-20 22:11:15 +1100 | [diff] [blame^] | 1 | #include <Eigen/Core> |
2 | #include <unsupported/Eigen/SpecialFunctions> | ||||
3 | #include <iostream> | ||||
4 | using namespace Eigen; | ||||
5 | int main() | ||||
6 | { | ||||
7 | Array4d v(0.5,10,0,-1); | ||||
8 | std::cout << v.lgamma() << std::endl; | ||||
9 | } |