Rev 3265 | Rev 4349 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3265 | Rev 4158 | ||
---|---|---|---|
Line 2... | Line 2... | ||
2 | !goto proc |
2 | !goto proc |
3 | !endif |
3 | !endif |
4 | slib_title=Indefinite or definite integration of a function of one variable |
- | |
5 | slib_parms=4\ |
4 | |
6 | ,the function\ |
- | |
7 | x,the variable name\ |
- | |
8 | ,starting bound, optional\ |
- | |
9 | ,ending bound, optional |
- | |
10 | ,option words in case of definite integral: numeric, fast |
- | |
11 | slib_author=Gang Xiao |
5 | slib_author=Gang Xiao |
12 | slib_out=The value (empty if error) |
- | |
13 | slib_comment=This script uses Maxima. If one of the bounds is missing,\ |
- | |
14 | then indefinite integration (formal method) is tried. Otherwise \ |
- | |
15 | definite integration. It first tries the formal method.\ |
- | |
16 | If this fails, then a numerical method is tried. |
- | |
- | 6 | ||
17 | slib_example=sin(x),x,0,5,numeric\ |
7 | slib_example=sin(x),x,0,5,numeric\ |
18 | sin(x),x,0,5,fast\ |
8 | sin(x),x,0,5,fast\ |
19 | sin(x),x |
9 | sin(x),x |
20 | slib_require=maxima, pari |
10 | slib_require=maxima, pari |
21 | !exit |
11 | !exit |