10 lines
190 B
C++
10 lines
190 B
C++
|
#include <Eigen/Core>
|
||
|
#include <unsupported/Eigen/SpecialFunctions>
|
||
|
#include <iostream>
|
||
|
using namespace Eigen;
|
||
|
int main()
|
||
|
{
|
||
|
Array4d v(-0.5,2,0,-7);
|
||
|
std::cout << v.erfc() << std::endl;
|
||
|
}
|