1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-14 00:38:10 +08:00
2016-07-12 16:47:39 +02:00

10 lines
189 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.erf() << std::endl;
}