blob: fc45fbec9b8cd41655d16e8de6572ecb36985601 [file]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
#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;
}