iComplex

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules >

iComplex

 

Description

 

iComplex is a module designed to allow to deal with complex numbers.

It makes heavy use of the math functions of the C runtime library.

 

Because many of the methods are based in ansi C functions found in the GNU Scientific Library ( http://www.gnu.org/software/gsl/ ), distributed under the terms of the GNU General Public License (GPL), this module is also subject to that license and, therefore, is only suitable to be used in open source projects.

 

How to use this module

 

Inside your script, before calling any module specific keyword, add the following:

 

USES "iComplex"

 

This directive will load the module and add the new keywords.

 

Thanks

 

 

iComplex module has been developed using José Roca code you can find here:

http://www.jose.it-berater.org/smfforum/index.php?topic=5061.0

 

See CComplex.inc file inside API Headers.