Rev 686 | Rev 4349 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 686 | Rev 4158 | ||
---|---|---|---|
Line 2... | Line 2... | ||
2 | !goto proc |
2 | !goto proc |
3 | !endif |
3 | !endif |
4 | slib_title=The bound of a real function of two variables within a rectangle [x1,x2],[y1,y2] |
- | |
5 | slib_parms=7\ |
- | |
6 | ,the function expression\ |
- | |
7 | [x,y],the variable names\ |
- | |
8 | 0,x1\ |
- | |
9 | 1,x2\ |
- | |
10 | 0,y1\ |
4 | |
11 | 1,y2\ |
- | |
12 | 50,number of cutting steps (<=1000) |
- | |
13 | slib_author=Bernadette Perrin-Riou |
5 | slib_author=Bernadette Perrin-Riou |
14 | slib_out=min,max |
- | |
15 | slib_comment=This script computes the minimum and the maximum of a function\ |
- | |
16 | of two variables within a rectangle, in a very approximative way. Its main purpose is for\ |
- | |
17 | plotting uses. |
6 | |
18 |
|
7 | slib_example=x^2+sin(x*y)+exp(y^2),[x,y],0,3,-3,2,50 |
19 | 8 | ||
20 | !exit |
9 | !exit |
21 | 10 | ||
22 | :proc |
11 | :proc |
23 | !distribute items $wims_read_parm into slib_fn,slib_var,slib_x1,slib_x2,slib_y1,slib_y2,slib_steps |
12 | !distribute items $wims_read_parm into slib_fn,slib_var,slib_x1,slib_x2,slib_y1,slib_y2,slib_steps |