Lines Matching refs:bc

3 This `bc` uses the math algorithms below:
7 This `bc` uses brute force addition, which is linear (`O(n)`) in the number of
12 This `bc` uses brute force subtraction, which is linear (`O(n)`) in the number
17 This `bc` uses two algorithms: [Karatsuba][1] and brute force.
22 this `bc`, is superlinear but subpolynomial (bounded by `O(n^log_2(3))`).
35 This `bc` uses Algorithm D ([long division][2]). Long division is polynomial
49 this `bc` is small code).
57 This `bc` implements [Exponentiation by Squaring][3], which (via Karatsuba) has
63 This `bc` implements the fast algorithm [Newton's Method][4] (also known as the
70 ### Sine and Cosine (`bc` Math Library Only)
72 This `bc` uses the series
94 ### Exponentiation (`bc` Math Library Only)
96 This `bc` uses the series
116 ### Natural Logarithm (`bc` Math Library Only)
118 This `bc` uses the series
139 ### Arctangent (`bc` Math Library Only)
141 This `bc` uses the series
159 ### Bessel (`bc` Math Library Only)
161 This `bc` uses the series
188 ### Non-Integer Exponentiation (`bc` Math Library 2 Only)
264 ### Rounding (`bc` Math Library 2 Only)
273 ### Ceiling (`bc` Math Library 2 Only)
281 ### Factorial (`bc` Math Library 2 Only)
290 ### Permutations (`bc` Math Library 2 Only)
298 ### Combinations (`bc` Math Library 2 Only)
306 ### Logarithm of Any Base (`bc` Math Library 2 Only)
316 ### Logarithm of Base 2 (`bc` Math Library 2 Only)
322 ### Logarithm of Base 10 (`bc` Math Library 2 Only)
328 ### Root (`bc` Math Library 2 Only)
338 ### Cube Root (`bc` Math Library 2 Only)
344 ### Greatest Common Divisor (`bc` Math Library 2 Only)
355 ### Least Common Multiple (`bc` Math Library 2 Only)
363 ### Pi (`bc` Math Library 2 Only)
371 ### Tangent (`bc` Math Library 2 Only)
379 ### Atan2 (`bc` Math Library 2 Only)
398 [12]: https://github.com/gavinhoward/bc/issues/69