ELNTC 3CW "01 March 2010" "mathcw-1.00"

Table of contents


NAME

elntcf, elntc, elntcl, elntcw, elntcq, elntcll, elntcdf, elntcd, elntcdl, elntcdll - Neville elliptic theta-c function

SYNOPSIS

cc [ flags ] -I/usr/local/include file(s) -L/usr/local/lib -lmcw [ ... ]

#include <mathcw.h>

extern float elntcf (float u, float k);

extern double elntc (double u, double k);

extern long double elntcl (long double u, long double k);

extern __float80 elntcw (__float80 u, __float80 k);

extern __float128 elntcq (__float128 u, __float128 k);

extern long_long_double elntcll (long_long_double u, long_long_double k);

extern decimal_float elntcdf (decimal_float u, decimal_float k);

extern decimal_double elntcd (decimal_double u, decimal_double k);

extern decimal_long_double elntcdl (decimal_long_double u, decimal_long_double k);

extern decimal_long_long_double elntcdll (decimal_long_long_double u, decimal_long_long_double k);

NB: Functions with prototypes containing underscores in type names may be available only with certain extended compilers.


DESCRIPTION

Compute the Neville elliptic theta-c function.

The argument u is unrestricted, but accuracy deteriorates severely for u values outside the period of the elliptic function. The argument k (the modulus) is in [-1,+1].

See M. Abramowitz & I. A. Stegun, Handbook of Mathematical Functions, Chapter 16, for definitions of the Neville elliptic theta functions.


RETURN VALUES

Return the Neville elliptic function, theta_c(u,k).

ERRORS

If either argument is a NaN, return that argument. If k is out of range, set errno to EDOM and return a quiet NaN.

SEE ALSO

elk(3CW), elkm1(3CW), elntd(3CW), elntn(3CW), elnts(3CW), elq(3CW), elq1p(3CW), elqc(3CW), elqc1p(3CW).