vcl_complex.h
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 19 行
H
19 行
#ifndef vcl_borland55_complex_h_
#define vcl_borland55_complex_h_
// This header's vcl_abs must be consistent with vcl_cmath.h's version.
// Standard version mostly works.
#include "../iso/vcl_complex.h"
// Replace abs from standard version.
#undef vcl_abs
#define vcl_abs vcl_abs
inline long double vcl_abs(const vcl_complex<long double>& c)
{ return ::std::abs(c); }
inline double vcl_abs(const vcl_complex<double>& c) { return ::std::abs(c); }
inline float vcl_abs(const vcl_complex<float>& c) { return ::std::abs(c); }
#endif // vcl_borland55_complex_h_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?