⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eval.h

📁 该文件为c++的数学函数库!是一个非常有用的编程工具.它含有各种数学函数,为科学计算、工程应用等程序编写提供方便!
💻 H
字号:
/* evaluate a function discarding the status value in a modifiable way */#define EVAL_RESULT(fn) \   gsl_sf_result result; \   int status = fn; \   if (status != GSL_SUCCESS) { \     GSL_ERROR_VAL(#fn, status, result.val); \   } ; \   return result.val;#define EVAL_DOUBLE(fn) \   int status = fn; \   if (status != GSL_SUCCESS) { \     GSL_ERROR_VAL(#fn, status, result); \   } ; \   return result;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -