aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Cwise_erfc.cpp
blob: d8bb04c307631ef0d5a02d91179dcd2f46bfe07f (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.erfc() << std::endl;
}