【中文版】

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 : statistic and stochastic functions

Function name Function info
avg

::mfp::math::stat_stoch::avg(0...) :

Function avg(...) returns average value of an arbitary number of parameters.

beta

::mfp::math::stat_stoch::beta(2) :

Function beta(z1, z2) returns beta function value of complexes z1 and z2, note that real part of z1 and z2 must be positive.

gamma

::mfp::math::stat_stoch::gamma(1) :

Function gamma(z) returns gamma function value of complex z, note that real part of z must be positive.

gavg

::mfp::math::stat_stoch::gavg(0...) :

Function gavg(...) returns geometric mean value of an arbitary number of parameters.

havg

::mfp::math::stat_stoch::havg(0...) :

Function havg(...) returns harmonic mean value of an arbitary number of parameters.

max

::mfp::math::stat_stoch::max(0...) :

Function max(...) returns maximum value of an arbitary number of parameters.

med

::mfp::math::stat_stoch::med(0...) :

Function med(...) returns medium value of an arbitary number of parameters. If the number of parameters is even, returns average of the middle two parameters.

min

::mfp::math::stat_stoch::min(0...) :

Function min(...) returns minimum value of an arbitary number of parameters.

ncr

::mfp::math::stat_stoch::ncr(2) :

Function nCr(x, y) calculates the number of y-combination of a set S which has x elements. Note that x, y are non-negative integer, x >= y.

npr

::mfp::math::stat_stoch::npr(2) :

Function nPr(x, y) calculates the number of y-permutation of a set S which has x elements. Note that x, y are non-negative integer, x >= y.

rand

::mfp::math::stat_stoch::rand(0) :

rand() function returns a random float number between 0 (inclusive) and 1 (exclusive).

stdev

::mfp::math::stat_stoch::stdev(0...) :

Function stdev(...) returns standard deviation of an arbitary number of parameters.

Note that the parameters are a sample of a larger set.

stdevp

::mfp::math::stat_stoch::stdevp(0...) :

Function stdevp(...) returns standard deviation of an arbitary number of parameters.

sum

::mfp::math::stat_stoch::sum(0...) :

Function sum(...) returns sum value of an arbitary number of parameters.