mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 17:17:14 +08:00
9 lines
195 B
C++
9 lines
195 B
C++
#include <Eigen/Core>
|
|
#include <iostream>
|
|
#include <unsupported/Eigen/SpecialFunctions>
|
|
using namespace Eigen;
|
|
int main() {
|
|
Array4d v(0.5, 10, 0, -1);
|
|
std::cout << v.lgamma() << std::endl;
|
|
}
|