File: cdft.man

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (39 lines) | stat: -rw-r--r-- 1,107 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.TH cdft 1 "Dec 1997" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
cdft - cumulative distribution function Student's T distribution 
.SH CALLING SEQUENCE
.nf
[P,Q]=cdft("PQ",T,Df)
[T]=cdft("T",Df,P,Q)
[Df]=cdft("Df",P,Q,T)
.fi 
.SH PARAMETERS
.TP 10
P,Q,T,Df
: six real vectors of the same size.
.TP
P,Q (Q=1-P)
: The integral from -infinity to t of the t-density. Input range: (0,1].
.TP
T
: Upper limit of integration of the t-density.
Input range: ( -infinity, +infinity).
Search range: [ -1E150, 1E150 ]
.TP
DF:
Degrees of freedom of the t-distribution.
Input range: (0 , +infinity).
Search range: [1e-300, 1E10]
.SH DESCRIPTION
Calculates any one parameter of the T distribution given
values for the others.
.LP
Formula  26.5.27  of   Abramowitz   and  Stegun,   Handbook   of
Mathematical Functions  (1966) is used to reduce the computation
of the cumulative distribution function to that of an incomplete
beta.
.LP
Computation of other parameters involve a seach for a value that
produces  the desired  value  of P.   The search relies  on  the
monotinicity of P with the other parameter.