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

CATLAN

Name:
    CATLAN (LET)
Type:
    Library Function
Purpose:
    Compute the Catlan beta function.
Description:
    The Catlan beta function is defined as:

      B(s) = SUM((-1)**(k-1)/(2*k+1)**s,  s >= 1 where the summation is for k = 0 to infinity

    For better numerical stability, Dataplot actually computes B(s) - 1.

    Dataplot uses a Fortran translation of a C routine given in "Atlas For Computing Mathematical Functions" (see the Reference section below).

Syntax:
    LET <y> = CATLAN(<x>)             <SUBSET/EXCEPT/FOR qualification>
    where <x> is a number, variable, or parameter (> 1);
                <y> is a variable or a parameter (depending on what <x> is) where the computed Catlan beta - 1 values are stored;
    and where the <SUBSET/EXCEPT/FOR qualification> is optional.
Examples:
    LET A = CATLAN(2)
    LET A = CATLAN(X)
    LET X2 = CATLAN(X) FOR X = 0.1 0.1 3.0
Default:
    None
Synonyms:
    None
Related Commands:
    ETA = Compute the eta function.
    ZETA = Compute the Riemann zeta function.
    LAMBDA = Compute the lambda function.
Reference:
    "Atlas For Computing Mathematical Functions", William J. Thompson, John wiley & Sons, 1997, pp. 147-151.
Applications:
    Special Functions
Implementation Date:
    1997/12
Program:
    TITLE AUTOMATIC
    PLOT CATLAN(X) FOR X = 1.01 0.01 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.