mesytec-mnode/external/taskflow-3.8.0/3rd-party/eigen-3.3.7/doc/examples/Cwise_erfc.cpp

10 lines
190 B
C++
Raw Permalink Normal View History

2025-01-04 01:25:05 +01:00
#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;
}