📄 r_atn2d.c
字号:
#ifndef lint static char sccsid[] = "@(#)r_atn2d.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */#endif/* * VMS Fortran compatibility function: * two-argument arc tangent in degrees. */#include <math.h>static float pitod = 57.2957795130823208767981548141; /* 180/pi */FLOATFUNCTIONTYPE r_atn2d(y,x)float *y,*x;{ FLOATFUNCTIONTYPE w; float z; w = r_atan2_(y,x); z = *((float *)&w) * pitod; RETURNFLOAT(z);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -