Cwise_erf.cpp
Go to the documentation of this file.
1 #include <Eigen/Core>
2 #include <unsupported/Eigen/SpecialFunctions>
3 #include <iostream>
4 int main()
5 {
6  Eigen::Array4d v(-0.5,2,0,-7);
7  std::cout << v.erf() << std::endl;
8 }
Array< int, Dynamic, 1 > v
int main()
Definition: Cwise_erf.cpp:4
General-purpose arrays with easy API for coefficient-wise operations.
Definition: Array.h:49