bigloo.foreign.exp C# (CSharp) Method

exp() public static method

public static exp ( double n ) : double
n double
return double
        public static double exp( double  n )
        {
            return Math.Exp( n );
        }
foreign