blob: 4b7902c6f26daf1eec66da428a952c0b704fff2d [file] [log] [blame]
#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;
}