]> gitweb.factorcode.org Git - factor.git/blob - library/math/trig-hyp.factor
5af291641ca289cf5102e60fc9a0535ba7a88bbe
[factor.git] / library / math / trig-hyp.factor
1 !:folding=indent:collapseFolds=0:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 IN: math
29 USE: arithmetic
30 USE: combinators
31 USE: kernel
32 USE: real-math
33 USE: stack
34
35 !!! Trigonometric functions:
36 !!!    cos sec sin cosec tan cot
37
38 !!! Hyperbolic functions:
39 !!!    cosh sech sinh cosech tanh coth
40
41 : cos ( z -- cos )
42     >rect 2dup
43     fcosh swap fcos * -rot
44     fsinh swap fsin neg * rect> ;
45
46 : sec cos recip ;
47
48 : cosh ( z -- cosh )
49     >rect 2dup
50     fcos swap fcosh * -rot
51     fsin swap fsinh * rect> ;
52
53 : sech cosh recip ;
54
55 : sin ( z -- sin )
56     >rect 2dup
57     fcosh swap fsin * -rot
58     fsinh swap fcos * rect> ;
59
60 : cosec sin recip ;
61
62 : sinh ( z -- sinh )
63     >rect 2dup
64     fcos swap fsinh * -rot
65     fsin swap fcosh * rect> ;
66
67 : cosech sinh recip ;
68
69 : tan dup sin swap cos / ;
70 : tanh dup sinh swap cosh / ;
71 : cot dup cos swap sin / ;
72 : coth dup cosh swap sinh / ;