【中文版】

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 : complex number functions

Function name Function info
abs

::mfp::math::complex::abs(1) :

abs(x) returns modulus of a complex number or absolute value of a real number.

angle

::mfp::math::complex::angle(1) :

angle(x) returns radian based angle of a complex number

image

::mfp::math::complex::image(1) :

image(x) returns image part (a real value) of complex value x.

::mfp::math::complex::image(2) :

image(x, mode) returns image part of complex value x. If mode is true, returns image value. Otherwise, returns real value. For example, image(3+2i, true) = 2i while image(3+2i, false) = 2.

real

::mfp::math::complex::real(1) :

real(x) returns real part of complex value x.