mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +08:00
8 lines
179 B
C++
8 lines
179 B
C++
#include <Eigen/Core>
|
|
#include <unsupported/Eigen/SpecialFunctions>
|
|
#include <iostream>
|
|
int main() {
|
|
Eigen::Array4d v(0.5, 10, 0, -1);
|
|
std::cout << v.lgamma() << std::endl;
|
|
}
|