added libtomfloat-0.01
[libtomfloat.git] / mpf_cos.c
blob421466c796ae3a7618d11608ab583b13a9094a5f
1 /* LibTomFloat, multiple-precision floating-point library
3 * LibTomFloat is a library that provides multiple-precision
4 * floating-point artihmetic as well as trigonometric functionality.
6 * This library requires the public domain LibTomMath to be installed.
7 *
8 * This library is free for all purposes without any express
9 * gurantee it works
11 * Tom St Denis, tomstdenis@iahu.ca, http://float.libtomcrypt.org
13 #include <tomfloat.h>
15 /* using cos x == \sum_{n=0}^{\infty} ((-1)^n/(2n)!) * x^2n */
16 int mpf_cos(mp_float *a, mp_float *b)
18 mp_float tmpovern, tmp, tmpx, res, sqr;
19 int oddeven, err, itts;
20 long n;
21 /* initialize temps */
22 if ((err = mpf_init_multi(b->radix, &tmpx, &tmpovern, &tmp, &res, &sqr, NULL)) != MP_OKAY) {
23 return err;
26 /* initlialize temps */
27 /* three start at one, sqr is the square of a */
28 if ((err = mpf_const_d(&res, 1)) != MP_OKAY) { goto __ERR; }
29 if ((err = mpf_const_d(&tmpovern, 1)) != MP_OKAY) { goto __ERR; }
30 if ((err = mpf_const_d(&tmpx, 1)) != MP_OKAY) { goto __ERR; }
31 if ((err = mpf_sqr(a, &sqr)) != MP_OKAY) { goto __ERR; }
33 /* this is the denom counter. Goes up by two per pass */
34 n = 0;
36 /* we alternate between adding and subtracting */
37 oddeven = 1;
39 /* get number of iterations */
40 itts = mpf_iterations(b);
42 while (itts-- > 0) {
43 /* compute 1/(2n)! from 1/(2(n-1))! by multiplying by (1/n)(1/(n+1)) */
44 if ((err = mpf_const_d(&tmp, ++n)) != MP_OKAY) { goto __ERR; }
45 if ((err = mpf_inv(&tmp, &tmp)) != MP_OKAY) { goto __ERR; }
46 if ((err = mpf_mul(&tmpovern, &tmp, &tmpovern)) != MP_OKAY) { goto __ERR; }
47 /* we do this twice */
48 if ((err = mpf_const_d(&tmp, ++n)) != MP_OKAY) { goto __ERR; }
49 if ((err = mpf_inv(&tmp, &tmp)) != MP_OKAY) { goto __ERR; }
50 if ((err = mpf_mul(&tmpovern, &tmp, &tmpovern)) != MP_OKAY) { goto __ERR; }
52 /* now multiply a into tmpx twice */
53 if ((err = mpf_mul(&tmpx, &sqr, &tmpx)) != MP_OKAY) { goto __ERR; }
55 /* now multiply the two */
56 if ((err = mpf_mul(&tmpx, &tmpovern, &tmp)) != MP_OKAY) { goto __ERR; }
58 /* now depending on if this is even or odd we add/sub */
59 oddeven ^= 1;
60 if (oddeven == 1) {
61 if ((err = mpf_add(&res, &tmp, &res)) != MP_OKAY) { goto __ERR; }
62 } else {
63 if ((err = mpf_sub(&res, &tmp, &res)) != MP_OKAY) { goto __ERR; }
66 mpf_exch(&res, b);
67 __ERR: mpf_clear_multi(&tmpx, &tmpovern, &tmp, &res, &sqr, NULL);
68 return err;