mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00
9 lines
193 B
C++
9 lines
193 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.erfc() << std::endl;
|
|
}
|