aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Cwise_erf.cpp
blob: e7cd2c1c0f7a43e834f10fb0fac6cd54f2ad1a2d (plain)
1
2
3
4
5
6
7
8
9
#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;
}