C 编程/math.h/acos
外观
acos() 函数(代表 arc cosine,即反余弦)在 math.h
中定义。它接受一个变量,返回该变量的反余弦值。该函数期望值在 -1 到 1 之间,返回值在 0 到 PI(3.1415927)之间。如果传入的值大于 1,则会输出 NAN。
float acos(float x);
需要返回反余弦值的浮点数。
浮点数(变量的反余弦值)。
- The C Programming Language, Second Edition, By Brian W. Kernighan and Dennis M. Ritchie, Page no. 251
- Programming With C, Second Edition, By Gottfried, Page no 487