Dataplot Vol 2 Auxiliary Chapter

NORCHAZ

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

      H(x)=-LOG(1 - NORCDF(x))   -infinity <= x <= infinity

    where NORCDF is the normal cumulative distribution function.

Syntax:
    LET <y2> = NORCHAZ(<y1>,<loc>,<scale>)             <SUBSET/EXCEPT/FOR qualification>
    where <y1> is a number, parameter, or variable;
                <loc> is a number, parameter, or variable containing the location parameter;
                <scale> is a number, parameter, or variable containing the scale parameter;
                <y2> is a parameter or variable (depending on what <y1> is) where the computed normal cumulative hazard value is stored;
    and where the <SUBSET/EXCEPT/FOR qualification> is optional.

    The location and scale parameters are optional.

Examples:
    LET A = NORCHAZ(3)
    LET A = NORCHAZ(A1)
    LET X2 = NORCHAZ(X1,10,50)
Default:
    None
Synonyms:
    None
Related Commands:
    NORHAZ = Compute the normal hazard function.
    NORPDF = Compute the normal probability density function.
    WEIHAZ = Compute the Weibull hazard function.
    LGNHAZ = Compute the lognormal hazard function.
    EXPHAZ = Compute the exponential hazard function.
Reference:
    "Continuous Univariate Distributions: Volume 1", Johnson, Kotz, and Balakrishnan, John wiley and Sons, 1994.
Applications:
    Reliability
Implementation Date:
    1998/5
Program:
    TITLE AUTOMATIC
    PLOT NORCHAZ(X) FOR X = -5 0.1 5

    plot generated by sample program

Date created: 6/5/2001
Last updated: 4/4/2003
Please email comments on this WWW page to alan.heckert@nist.gov.