数学函数

1.ArcSin

public static double ArcSin(double a)
{
    
if (Math.Abs(a) == 1.0return Math.PI / 2.0;
    
else return Math.Atan(a / Math.Sqrt(1 - a * a));
}
原文地址:https://www.cnblogs.com/dodui/p/2048939.html