mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-28 02:53:39 +08:00
355382ad63
* remove useless statement * Add eigen to third_party dir * remove reducdant lines
9 lines
192 B
C++
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;
|
|
}
|