blob: b8b0e6dd2de538bd0d51bcf00221924002f6c8ca [file]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
#include <Eigen/Core>
#include <contrib/Eigen/SpecialFunctions>
#include <iostream>
int main() {
Eigen::Array4d v(-0.5, 2, 0, -7);
std::cout << v.erfc() << std::endl;
}