Computes the First Value raised to the power of the Second Value using Series Expansion to almost full accuracy.
Methods for decimal, double and int Parameters.
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(decimal,decimal);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(decimal,double);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(decimal,int);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(double,decimal);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(double,double);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(double,int);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(int,decimal);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(int,double);
Computes the First Value raised to the power of the Second Value using series expansion.
public static decimal Pow(int,int);
DecimalOps Class | Esb.Math Namespace