mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 18:19:34 +08:00
8 lines
177 B
C++
8 lines
177 B
C++
#include <Eigen/Core>
|
|
#include <unsupported/Eigen/SpecialFunctions>
|
|
#include <iostream>
|
|
int main() {
|
|
Eigen::Array4d v(-0.5, 2, 0, -7);
|
|
std::cout << v.erfc() << std::endl;
|
|
}
|