calc [ -s ] [ expression ]
If no file or expression is given calc interprets the standard input.
Calc input consists of expressions and statements. Expressions are evaluated and their results printed. Statements, typically assignments and function definitions, produce no output unless they explicitly call print.
Comments begin with # and extend to the end of the line as in Limbo.
Numbers may have a base specified using C or Limbo syntax.
Variable names have the usual syntax, including _. They may be introduced without a declaration and have an initial default value of 0.0.
The predefined variable degrees can be set to specify angles in degrees rather than radians in the trigonometric functions below. It is initially 0 (angles in radians by default).
The predefined variable printbase can be set to any integer between 2 and 36 inclusive to specify the base of all values output.
The constants e, Pi(PI), Phi(φ), Gamma(γ), Infinity(∞), and Nan(NaN) are predefined.
Expressions are formed with these Limbo-like operators, listed by decreasing precedence.
If the -s flag is given, a strict interpretation of the declaration rules are enforced - all variables must be declared and initialized first using the := operator. Otherwise undeclared variables are declared and initialized to 0.0 in the current scope. In either case, := always forces a new declaration.
The extra non-Limbo operators are factorial (! when postfix), integer division (//), conditional (? and :) comma (,), logical equivalence (<->), implication (->), reverse implication (<-), nand (^) and nor (v).
Unary operators, assignment operators, **, ? and : are right associative as usual.
The comma operator may be replaced by white space in expressions.
Built in functions are abs, acos, acosh, asin, asinh, atan, atanh, atan2, cbrt, ceiling, cos, cosh, erf, exp, floor, frac, gamma(Γ), int, log, log10, max, min, pow, rand, round, sign, sin, sinh, sqrt, tan, and tanh.
Functions of one argument may be written without brackets:
sin 45 sqrt 2
Sum and product operators are available using sigma (Σ) and pi (Π).
For example
sigma(i = 0, 100, 1/i!)
Simple definite integration can be done:
integral(x = -1.96, 1.96, exp(-0.5*x*x)/sqrt(2*Pi))
For the sake of completeness, the derivative of a function at a given
point can be calculated:
differential(x=1, x*x+5*x+6)
There is limited support for the solution of equations.
For example
solve(x**2-5*x+6==0)
solve(x**2-5*x+6==y**3+z, x)
Print prints a list of expressions that may include string constants such as "hello\n" .
Read reads in a list of values interactively. The list of variables to assign these values should follow.
Other files may be read in using the Limbo include statement.
Control flow statements are break, continue, exit, return, if-else, while, do-while, and for, with braces for grouping.
The use of semi-colon and newline is optional.
Functions are introduced by the keyword fn.
fn ack(a, b)
{
n = n+1
if(a == 0)
return b+1;
if(b == 0)
return ack(a-1, 1);
return ack(a-1, ack(a, b-1));
}
for(i = 0; i < 4; i++)
for(j = 0; j < 4; j++){
n = 0
print "ack(", i, ",", j, ")=", ack(i, j), "n"
print n, " calls", "n"
}
| CALC(1) | Rev: Fri Jun 01 13:20:54 GMT 2007 |