Rev 20 | Rev 4161 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | reyssat | 1 | !if $wims_read_parm!=slib_header |
2 | !goto proc |
||
3 | !endif |
||
4 | slib_title=Probability cumulative density function of Student law |
||
5 | slib_parms=2\ |
||
6 | ,[data]\ |
||
7 | ,n |
||
8 | |||
9 | slib_author=Bernadette PERRIN-RIOU |
||
10 | slib_out=values at data |
||
11 | slib_comment=data can be a list of reals in brackets; |
||
12 | slib_example=[2,4,7],5 |
||
3265 | bpr | 13 | slib_require=octave |
20 | reyssat | 14 | !exit |
15 | |||
16 | :proc |
||
17 | slib_out= |
||
18 | |||
19 | !distribute item $wims_read_parm into slib_data,slib_n |
||
20 | |||
21 | slib_data=!declosing $slib_data |
||
22 | |||
23 | slib_out=!exec octave t_cdf([$slib_data],$slib_n) |
||
24 | slib_out=!words2items $slib_out |
||
25 | slib_out=!trim $slib_out |
||
26 |