atanhf.h
来自「Newlib 嵌入式 C库 标准实现代码」· C头文件 代码 · 共 19 行
H
19 行
#include "headers/atanhf4.h"#include "headers/dom_chkf_negone_one.h"static __inline float _atanhf(float x){ float res; vector float vx; vx = spu_splats(x); res = spu_extract(_atanhf4(vx), 0);#ifndef _IEEE_LIBM /* * Domain error if not in the interval [-1, +1] */ dom_chkf_negone_one(vx);#endif return res;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?