|
TSPPDFName:
with 0 1 and n > 0.
where <y1> is a number, parameter, or variable containing values in the interval (0, 1); <y2> is a variable or a parameter (depending on what <y1> is) where the computed two-sided power pdf value is stored; <theta> is a number, parameter, or variable in the interval (0, 1) that specifies the first shape parameter; <n> is a positive number, parameter, or variable that specifies the second shape parameter; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET A = TSPPDF(A1,0.5,2) LET X2 = TSPPDF(X1,0.8,0.5)
MULTIPLOT 2 2 MULTIPLOT CORNER COORDINATES 0 0 100 100 TITLE AUTOMATIC LET THETA = 0.5 LET N = 4 X1LABEL THETA = ^THETA, N = ^N PLOT TSPPDF(X,THETA,N) FOR X = 0.01 0.01 0.99 LET THETA = 0.25 LET N = 2 X1LABEL THETA = ^THETA, N = ^N PLOT TSPPDF(X,THETA,N) FOR X = 0.01 0.01 0.99 LET THETA = 0.75 LET N = 1.5 X1LABEL THETA = ^THETA, N = ^N PLOT TSPPDF(X,THETA,N) FOR X = 0.01 0.01 0.99 LET THETA = 0.75 LET N = 0.5 X1LABEL THETA = ^THETA, N = ^N PLOT TSPPDF(X,THETA,N) FOR X = 0.01 0.01 0.99 END OF MULTIPLOT
Date created: 5/16/2002 |