SED navigation bar go to SED home page go to Dataplot home page go to NIST home page SED Home Page SED Staff SED Projects SED Products and Publications Search SED Pages
Dataplot Vol 2 Vol 1

PNRCHAZ

Name:
    PNRCHAZ (LET)
Type:
    Library Function
Purpose:
    Compute the standard power-normal cumulative hazard function.
Description:
    The standard power-normal distribution has the following cumulative hazard function:

      H(x,p)=-LOG[(NORCDF(-x))**p]    for p > 0

    where p is the shape (power) parameter and NORCDF is the cumulative distribution function for the standard normal distribution.

    If p is 1, this distribution reduces to the normal distribution.

Syntax:
    LET <y> = PNRCHAZ(<x>,<p>)        <SUBSET/EXCEPT/FOR qualification>
    where <x> is a number, parameter, or variable;
                  <p> is a positive number, parameter, or variable that specifies the power parameter;
                  <y> is a variable or a parameter (depending on what <x> is) where the computed power-normal cumulative hazard value is stored;
    and where the <SUBSET/EXCEPT/FOR qualification> is optional.
Examples:
    LET A = PNRCHAZ(3,2)
    LET X2 = PNRCHAZ(X1,POW)
    LET X2 = PNRCHAZ(X1,0.5)
Note:
    The general form of the power-normal cumulative hazard function is:

      H(x,p,mu,sigma)=-LOG[(NORCDF(-(x-mu)/sigma))**p]
 for p, sigma > 0

    where mu and sigma are the location and scale parameters, respectively.

Default:
    None
Synonyms:
    None
Related Commands:
    PNRCDF = Compute the power-normal cumulative distribution function.
    PNRPDF = Compute the power-normal probability density function.
    PNRPPF = Compute the power-normal percent point function.
    PNRHAZ = Compute the power-normal hazard function.
    PLNPDF = Compute the power-lognormal probability density function.
    LGNPDF = Compute the lognormal probability density function.
    NORPDF = Compute the normal probability density function.
Reference:
    "A Computer Program POWNOR for Fitting the Power-Normal and -Lognormal Models to Life or Strength Data from Specimens of Various Sizes", Nelson and Doganaksoy, NIST-IR 4760, March 1992.
Applications:
    Reliability
Implementation Date:
    1998/4
Program:
    LABEL CASE ASIS
    X1LABEL P
    Y1LABEL Cumulative Hazard
    YLIMITS 0 1 
    MAJOR YTIC MARK NUMBER 6 
    TITLE CASE ASIS
    TITLE Power Normal Cumulative Hazard Plot CR() ...
     SD=1, P=10000, 3000, 1000, 300, 100, 50, 20, 5, 1, 0.5, 0.2 0.1 
    . 
    PLOT PNRCHAZ(X,10000) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,3000) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,1000) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,300) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,100) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,50) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,20) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,5) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,1) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,0.5) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,0.2) FOR X = -5 .05 5 AND 
    PLOT PNRCHAZ(X,0.1) FOR X = -5 .05 5 
        
    plot generated by sample program

Date created: 11/13/2002
Last updated: 4/4/2003
Please email comments on this WWW page to alan.heckert@nist.gov.