Scientific Calculator Plus Help : exponential and logrithmic functions
Function name | Function info |
---|---|
::mfp::math::log_exp::exp(1) : exp(x), where x is a real or complex number, returns x powers of e. |
|
::mfp::math::log_exp::lg(1) : Function lg(x) returns e based log value of x. |
|
::mfp::math::log_exp::ln(1) : Function ln(x) returns e based log value of x. |
|
::mfp::math::log_exp::log(1) : log(x), where x can be a complex number, returns e based logarithm value of x. |
|
::mfp::math::log_exp::log10(1) : Function log10(x) returns 10 based log value of x. |
|
::mfp::math::log_exp::log2(1) : Function log2(x) returns 2 based log value of x. |
|
::mfp::math::log_exp::loge(1) : Function loge(x) returns e based log value of x. |
|
::mfp::math::log_exp::pow(2) : pow(x,y) returns y powers of x. Note that both x and y can be either a real or a complex number. If there are more than one results of pow(x,y), return the first result. ::mfp::math::log_exp::pow(3) : pow(x,y,z) returns a list including first z values of y powers of x. If y powers of x has less than z values, returns all the values. Note that y must be a real number while x can be either a real or a complex number. Z must be a positive integer. |
|
::mfp::math::log_exp::sqrt(1) : Function sqrt(x) returns square root of real number x. |