|
Article on other languages:
|
bc is "an arbitrary precision calculator language" with syntax similar to the C programming language. It is generally used by typing the command There are currently two main dialects: the rigorously defined POSIX bc, and its direct descendant, the much expanded GNU bc (also, GNU bc is available for a wider range of platforms, such as Microsoft Windows). A more recent dialect, Plan 9 bc, is a superset of the former and subset of the latter. All three forms of bc can be executed as either a mathematical scripting language or as an interactive mathematical shell.
POSIX bcThe POSIX standardised bc language is traditionally written as a program in the dc programming language to provide a higher level of access to the features of the dc language without the complexities of dc's terse syntax. In this form, the bc language contains single letter variable, array and function names and most standard arithmetic operators as well as the familiar control flow constructs, ( Functions are defined using a All numbers and variable contents are fixed precision floating-point numbers whose precision (in decimal places) is determined by the global The numeric base of input (in interactive mode), output and program constants may be specified by setting the reserved
Comments may be added to bc code by use of the C Mathematical operatorsExactly as CThe following POSIX bc operators behave exactly like their C counterparts: + - * / += -= *= /= ++ -- < > == != <= >=
( ) [ ] { }
Similar to CThe modulus operators: % %= ... behave exactly like their C counterparts only when the global Only resembling CThe operators: ^ ^= ... resemble the C bitwise exclusive-or operators, but are in fact the bc integer exponentiation operators. 'Missing' operators relative to CThe bitwise, boolean and conditional operators: & | ^ && || ^^ &= |= ^= &&= ||= ^^= << >> <<= >>= ?: ... are not available in POSIX bc. Built-in functionsThe Standard library functionsbc's standard library contains functions for calculating sine, cosine, arctangent, natural logarithm, the exponential function and the two parameter Bessel function J. Most standard mathematical functions (including the other inverse trigonometric functions) can be constructed using these. See external links for implementations of many other functions. Plan 9 bcPlan 9 bc is just like POSIX bc but for an additional GNU bcGNU bc derives from the POSIX standard and includes many enhancements. It is entirely separate from dc-based implementations of the POSIX standard and is instead written in C. Nevertheless, it is fully backwards compatible as all POSIX bc programs will run unmodified as GNU bc programs. GNU bc variables, arrays and function names may contain more than one character, some more operators have been included from C, and notably, an Output is achieved either by deliberately not assigning a result of a calculation to a variable (the POSIX way) or by using the added Furthermore, a In addition to C-style comments, a The value of the last calculation is always stored within the additional built-in Extra operatorsThe following logical operators are additional to those in POSIX bc: && || ! ... and are available for use in conditional statements (such as within an FunctionsAll functions available in GNU bc are inherited from POSIX. No further functions are provided as standard with the GNU distribution. Example codeSince the bc A 'Power' function in POSIX bc
/* A function to return the integer part of x */
define i(x) {
auto s
s = scale
scale = 0
x /= 1 /* round x down */
scale = s
return (x)
}
/* Use the fact that x^y == e^(y*log(x)) */
define p(x,y) {
if (y == i(y)) {
return (x ^ y)
}
return ( e( y * l(x) ) )
}
An equivalent 'Power' function in GNU bc
# A function to return the integer part of a number
define int(number) {
auto oldscale
oldscale = scale
scale = 0
number /= 1 /* round number down */
scale = oldscale
return number
}
# Use the fact that number^exponent == e^(exponent*log(number))
define power(number,exponent) {
if (exponent == int(exponent)) {
return number ^ exponent
} else {
return e( exponent * l(number) )
}
}
Calculating Pi to 10000 places (using the K.Takano equation (1982))$ bc -l -q scale = 10000; (12*a(1/49)+32*a(1/57)-5*a(1/239)+12*a(1/110443))*4 A translated C functionBecause the syntax of bc is very similar to that of C, published algorithms written in C can often be translated into BC quite easily, which immediately provides the arbitrary precision of BC. For example, in the Journal of Statistical Software (July 2004, Volume 11, Issue 5), George Marsaglia published the following C code for the cumulative normal distribution: double Phi(double x) { long double s=x,t=0,b=x,q=x*x,i=1; while(s!=t) s=(t=s)+(b*=q/(i+=2)); return .5+s*exp(-.5*q-.91893853320467274178L); } With a few minutes of work, this can be translated to the following GNU bc code: define normal(x) { auto s,t,b,q,i,const; const=0.5*l(8*a(1)); s=x; t=0; b=x; q=x*x; i=1; while(s!=t) {s=(t=s)+(b*=q/(i+=2))}; return .5+s*e(-.5*q-const); } Using bc in shell scriptsbc can be used non-interactively, with input via a pipe. This is useful inside shell scripts. For example: $ result=$(echo "scale=2; 5 * 7 / 3;" | bc) $ echo $result 11.66 In contrast, note that the bash shell only performs integer arithmetic, e.g.: $ result=$((5 * 7 /3)) $ echo $result 11 See alsoReferences
External links
|
||||||||||||||||||||||||||||||||||||||||||
This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License.
Mercedes Car
This site monitored by SitePinger.net