1This is file pbu2cdf.men--Plot Burr Type 2 CDF
2
3--------------------
4 1. Plot a Burr Type 2 CDF Function
5 2. PLOT BU2CDF(X,2) FOR X = -5  0.01 5
6 3.
7 4. You can specify the range of values to plot either
8 5. by providing an input vector containing the explicit
9 6. input values or by providing the start, increment,
10 7. and stop values.
11 8.
12 9. Input Variable (optional):
13 9. @CE 1 0 42 50 ? gui-variable
1410.
1511. Start Value:
1611. @CE 2 0 42 50 ?
1712. Increment Value (defaults to 0.1):
1812. @CE 3 0 42 50 ?
1913. Stop Value:
2013. @CE 4 0 42 50 ?
2114.
2215. Variable to Store the CDF Values (optional):
2315. @CE 5 0 42 50 ?
2416.
2517. Shape Parameter (required, > 0):
2617. @CE 6 0 42 50 ?
2718. Location Parameter:
2818. @CE 7 0 42 50 ?
2919. Scale Parameter (> 0):
3019. @CE 8 0 42 50 ?
3120.
3221.
3322. Plot the Burr Type 2 CDF's?
34--------------------
35AN FE
36LET ZSHAPE = 1
37@IF 6 0 LET ZSHAPE = _6
38LET ZLOC = 0
39@IF 7 0 LET ZLOC = _7
40LET ZSCALE = 1
41@IF 8 0 LET ZSCALE = _8
42LET ZINC = 0.1
43@IF 3 0 LET ZINC = _3
44@IF 1 0 LET ZJUNK = BU2CDF( _1 ,ZSHAPE,ZLOC,ZSCALE)
45@IF 1 0 PLOT ZJUNK _1
46@IF 2 0 PLOT BU2CDF( ZZZZ,ZSHAPE,ZLOC,ZSCALE) FOR ZZZZ = _2 ZINC _4
47@IF 5 0 LET _5 = YPLOT
48--------------------
49WEB HELP BU2CDF
50--------------------
51