sin.3m

来自「unix v7是最后一个广泛发布的研究型UNIX版本」· 3M 代码 · 共 72 行

3M
72
字号
.TH SIN 3M .SH NAMEsin, cos, tan, asin, acos, atan, atan2 \- trigonometric functions.SH SYNOPSIS.B #include <math.h>.PP.B double sin(x).br.B double x;.PP.B double cos(x).br.B double x;.PP.B double asin(x).br.B double x;.PP.B double acos(x).br.B double x;.PP.B double atan(x).br.B double x;.PP.B double atan2(x, y).br.B double x, y;.SH DESCRIPTION.I Sin, cosand.I tanreturn trigonometric functions of radian arguments.The magnitude of the argument should be checkedby the caller to make sure the result is meaningful..PP.I Asinreturns the arc sin in the range \-\(*p/2 to \(*p/2..PP.I Acosreturns the arc cosine in the range0 to \(*p..PP.I Atanreturns the arc tangent of.I xin the range \-\(*p/2 to \(*p/2..PP.I Atan2returns the arc tangent of.I x/yin the range \-\(*p to \(*p..SH DIAGNOSTICSArguments of magnitude greater than 1cause.I asinand.I acosto return value 0;.I errnois set to EDOM.The value of.I tanat its singular points is a huge number, and.I errnois set to ERANGE..SH BUGSThe value of.I tanfor arguments greater than about 2**31 is garbage.

⌨️ 快捷键说明

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