Kill the pesky "Done" at the end of your BASIC program by entering the following code as last line:
ec2
---
-=removed, the px function is well documented in the manual last time I checked=-
---
Using Complex numbersUtilizing complex numbers to minimize variable usage:
Complex numbers have the following properties:
-Positivity/Negativity or real number (boolean)
-Integer part of real number
-Decimal part of real number
-Positivity/Negativity of imaginary number (boolean)
-Integer part of imaginary number
-Decimal part of imaginary number
commands to get these values:
-real( (ok, xLib may interfere with this, so this is unusable while also using xLib)
-imag(
-iPart(
-fPart(
using these properties of complex variables in the right way can substitute the usage of six real variables!
---