1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
CONCALC - Readme
1. Introduction
2. Installation
3. Usage
4. Options
5. Scripting
1. Introduction
Concalc is a scientific calculator for the text console.
It is simple to use and it can process many mathematical functions.
Concalc is as subproject of Extcalc. It uses the calculation algorithms of
the graphical Extcalc calculator.
This is version 0.9.3 of Concalc. The parser algorithms should work
correctly now and all needed command line options are active.
Variables and the answer memory can be used. The script interpreter is
nearly completed.
2. Installation
1. unpack the packet (if you have not already done so) [tar -xzf concalc.tar.gz]
2. change directory [cd concalc]
3. configure package [./configure]
4. compile package [make]
5. become root [su]
6. install [make install]
To remove the package, just type make uninstall.
3. Usage
After the installation, you just need to type concalc into your console to run Concalc.
You can input a calculation direcly as command line paramter:
Concalc "2*(6+sqrt4/(2^5-sin(pi/3)))"
If you do so, put your function into " ", because otherwise, the shell may interpret the brackts wrong.
The second way is to start Concalc without parameter and then type the function into the running programm.
Concalc will process your input when you press enter.
4. Options
-m mode
--mode mode
Possible values: base, Mode for base-n calculatons and logic functions
std, normal calculation mode (default)
script, for running scripts (additional information at Point 5)
-b base
--base base
Possible values: dec, for decimal numbers (base 10)
hex, for hexadecimal numbers (base 16)
oct, for octal numbers (base 8)
bin, for binary numbers (base 2)
This option can only be used when -m base is set.
-o output length in digits
--output output length
Possible Values: 2-15 at Systems with 8 byte floating-point variables (for example Alpha or PPC64 CPUs)
2-18 at Systems with 10 byte floating-point variables (most 32 bit CPUs)
2-33 at Systems with 16 byte floating-point variables (some 64 bit CPUs, for example sparc64)
Example: calc -o 7 "sqrt2"
-a angle type
--angle angle type
Possible Values: deg, degrees; full circle is 360
rad, radiant; full circle is 2*pi
gra, grade; full circle is 400
Example: calc -a deg "sin30"
-v
--version
Output the version number of Concalc and return.
-h
--help
Output a short help and return.
5. Scripting
If you want to run a script, the parameters of Concalc are different.
To run a script, you should type
concalc -m script "path"
Path is the path where the script code is stored.
Script programming:
The script interpreter of calc uses a C-like programming syntax. The
following command are supported.
IF EXPRESSION
if(condition)
command for condition true;
else command for condition false;
WHILE LOOP
while(condition)
command that is run while condition is true;
FOR LOOP
for(initialisation; condition; count-command)
command that is run while condition is true;
CONTINUE, BREAK, STOP KEYWORDS
continue; // lets a loop immedeatley continue with the next step
break; // stops the loop
stop; // immediately stops the program
PRINT COMMAND
print( output to print out );
GETLINE COMMAND
getline; // read a text line from stdin and returns this text
GETKEY COMMAND
getkey; // return the key pressed by the user
// blocks until the user presses any key
KEYSTATE COMMAND
keystate; // returns the key pressed by the user or 0 if no keywas pressed
// nonblocking
SETCURSOR COMMAND
setcursor(x,y); // Sets the cursor to the given position (0,0) ist the upper
// left corner
SLEEP COMMAND
sleep( time in microseconds ); //Script is stops for the given time
RUN COMMAND
run("path"); // runs the script with the path "path"
// the path must be hard coded in the script
// and it must be quoted
ARRAYS
Every variable can be used as an array without any initialisation.
A[10]=4; // this sets the eleventh element of A to 4
// the array will always have the size you need
|