FLCHAZ
Name:
Type:
Purpose:
Compute the Fatigue Life cumulative hazard function with shape
parameter
.
Description:
Syntax:
LET <y> = FLCHAZ(<x>,<gamma>)
<SUBSET/EXCEPT/FOR qualification>
where <x> is a non-negative variable, parameter, or
number;
<y> is a variable or a parameter (depending on what
<x> is) where the computed Fatigue Life
cumulative hazard value is stored;
<gamma> is a positive number, parameter, or variable
that defines the shape parameter;
and where the <SUBSET/EXCEPT/FOR qualification> is optional.
Examples:
LET A = FLCHAZ(3,10)
LET A = FLCHAZ(A1,3)
LET X2 = FLCHAZ(X1,GAMMA)
Note:
The Fatigue Life distribution is symmetric and moderate tailed
for small gammas. It is highly skewed and long tailed for large
gamma. It approaches normality as gamma approaches zero.
Default:
Synonyms:
Related Commands:
FLCDF
|
= Compute the Fatigue Life cumulative distribution
function.
|
FLHAZ
|
= Compute the Fatigue Life hazard function.
|
FLPDF
|
= Compute the Fatigue Life probability density function.
|
FLPPF
|
= Compute the Fatigue Life percent point function.
|
IGPDF
|
= Compute the Inverse Gaussian probability density
function.
|
RIGPDF
|
= Compute the Reciprocal Inverse Gaussian probability
density function.
|
WALPDF
|
= Compute the Wald probability density function.
|
CHSPDF
|
= Compute the chi-square probability density function.
|
NORPDF
|
= Compute the normal probability density function.
|
WEIPDF
|
= Compute the Weibull probability density function.
|
Reference:
"Continuous Univariate Distributions: Volume 2", Johnson, Kotz,
and Balakrishnan, John Wiley, 1994.
Applications:
Implementation Date:
Program:
MULTIPLOT CORNER COORDINATES 5 5 95 95
MULTIPLOT 2 2
TITLE CASE ASIS
TITLE Fatigue Life Cumulative Hazard (Gamma = 1)
PLOT FLCHAZ(X,1) FOR X = 0.01 0.01 3
TITLE Fatigue Life Cumulative Hazard (Gamma = 2)
PLOT FLCHAZ(X,2) FOR X = 0.01 0.01 3
TITLE Fatigue Life Cumulative Hazard (Gamma = 3)
PLOT FLCHAZ(X,3) FOR X = 0.1 0.01 3
TITLE Fatigue Life Cumulative Hazard (Gamma = 0.5)
PLOT FLCHAZ(X,0.5) FOR X = 0.2 0.01 3
END OF MULTIPLOT
Date created: 11/13/2002
Last updated: 4/4/2003
Please email comments on this WWW page to
alan.heckert@nist.gov.
|