math.h 庫函數 有反三角函數解法
函數原型: double asin(double x);
函數功能: 計算sin^-1(x)的值.反正弦值函數
函數原型: double acos(double x);
函數功能: 計算cos^-1(x)的值,反余弦函數
函數原型: double atan(double x);
函數功能: 計算tan^-1(x)的值.
函數原型: double atan2(double x,double y);
函數功能: 計算tan^-1/(x/y)的值.求x/y的反正切值. |