eigen/doc/examples/Cwise_erfc.cpp

9 lines
174 B
C++
Raw Normal View History

2016-07-12 22:47:39 +08:00
#include <Eigen/Core>
#include <unsupported/Eigen/SpecialFunctions>
#include <iostream>
int main()
{
Eigen::Array4d v(-0.5,2,0,-7);
2016-07-12 22:47:39 +08:00
std::cout << v.erfc() << std::endl;
}