blob: c2c5df1a7e06b1bbd21f226c496ae83852483c4b [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, 2, 0, -7);
std::cout << v.erfc() << std::endl;
}