【中文版】

Introduction

MFP language introduction

MFP functions

all functions

integer operation

logic functions

statistic and stochastic

trigononmetric functions

exponential functions

complex number

system functions

array or matrix

graphic functions

expression and calculus

string functions

hyperbolic trigononmetric

sorting functions

polynomial

signal processing

file operation

time and date

graphic display

multimedia functions

data structure

data interchange format

platform and hardware

parallel computing

RTC multimedia

reflection

MFP compiling

others

deploy user functions

call MFP in your app

build Android APK

game programming

chart plotting

MFP math analysis

MFP file procession

number string and array

time date and system

Introduction of SCP

Scientific Calculator Plus Help : exponential and logrithmic functions

Function name Function info
exp

::mfp::math::log_exp::exp(1) :

exp(x), where x is a real or complex number, returns x powers of e.

lg

::mfp::math::log_exp::lg(1) :

Function lg(x) returns e based log value of x.

ln

::mfp::math::log_exp::ln(1) :

Function ln(x) returns e based log value of x.

log

::mfp::math::log_exp::log(1) :

log(x), where x can be a complex number, returns e based logarithm value of x.

log10

::mfp::math::log_exp::log10(1) :

Function log10(x) returns 10 based log value of x.

log2

::mfp::math::log_exp::log2(1) :

Function log2(x) returns 2 based log value of x.

loge

::mfp::math::log_exp::loge(1) :

Function loge(x) returns e based log value of x.

pow

::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.

sqrt

::mfp::math::log_exp::sqrt(1) :

Function sqrt(x) returns square root of real number x.