Hello all, I am looking for an exp function that can replicate the exponent function x^y found in excell. Can any body point me in the right direction. Thank you all
The C function you are looking for is:
pow(x,y);
Note that pow() is a floating-point function http://www.keil.com/support/man/docs/c51/c51_pow.htm Generally, floating-point is not a good idea on an 8051...