📄 positivity.c
字号:
/* Compare the integral of f(x) with the integral of |f(x)| to determine if f(x) covers both positive and negative values */static inline inttest_positivity (double result, double resabs);static inline inttest_positivity (double result, double resabs){ int status = (fabs (result) >= (1 - 50 * GSL_DBL_EPSILON) * resabs); return status;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -