Files
FastDeploy/third_party/eigen/doc/examples/Cwise_erf.cpp
Jack Zhou 355382ad63 Move eigen to third party (#282)
* remove useless statement

* Add eigen to third_party dir

* remove reducdant lines
2022-09-26 19:24:02 +08:00

9 lines
192 B
C++

#include <Eigen/Core>
#include <iostream>
#include <unsupported/Eigen/SpecialFunctions>
using namespace Eigen;
int main() {
Array4d v(-0.5, 2, 0, -7);
std::cout << v.erf() << std::endl;
}