|
f90/any(3) -- Determines whether any values are true
|
UNICOS, UNICOS/mk, and IRIX systems |
perl5/AnyDBM_File(3) -- provide framework for multiple DBMs NDBM_File, DB_File, GDBM_File, SDBM_File, ODBM_File - various DBM implemen
|
This module is a "pure virtual base class"--it has nothing of its own. It's just there to inherit from one of the various DBM packages. It prefers ndbm for compatibility reasons with Perl 4, then Berkeley DB (See the DB_File manpage), GDBM, SDBM (which is always there--it comes with Perl), and finally ODBM. This way old programs that used to use NDBM via dbmopen() can still do so, but new ones can reorder @ISA: BEGIN { @AnyDBM_File::ISA = qw(DB_File GDBM_File NDBM_File) } use AnyDBM_File; Hav... |
|
Tcl/append(3) -- Append to variable
|
Append all of the value arguments to the current value of variable varName. If varName doesn't exist, it is given a value equal to the concatenation of all the value arguments. This command provides an efficient way to build up long variables incrementally. For example, ``append a $b'' is much more efficient than ``set a $a$b'' if $a is long. |
Tcl/appinit(3) -- perform application-specific initialization
|
Tcl_Interp *interp (in) Interpreter for the application. |
standard/arc(3) -- draw a circular arc
|
x expects the x coordinate of the center of the arc. The center of the arc is the center of the circle that would contain the arc. y expects the y coordinate of the center of the arc. The center of the arc is the center of the circle that would contain the arc. radius expects the length of the radius of the arc. The radius of the arc is the radius of the circle that would contain the arc. startang expects the measure of the start angle of the arc. The start angle of the arc is measured from the ... |
standard/arcf(3) -- draw a filled circular arc
|
x expects the x coordinate of the center of the filled arc. The center of the filled arc is the center of the circle that would contain the arc. y expects the y coordinate of the center of the filled arc. The center of the filled arc is the center of the circle that would contain the arc. radius expects the length of the radius of the filled arc. The radius of the filled arc is the radius of the circle that would contain the filled arc. startang expects the measure (in tenths of a degree) of the... |
Tcl/array(3) -- Manipulate array variables
|
This command performs one of several operations on the variable given by arrayName. Unless otherwise specified for individual commands below, arrayName must be the name of an existing array variable. The option argument determines what action is carried out by the command. The legal options (which may be abbreviated) are: array anymore arrayName searchId Returns 1 if there are any more elements left to be processed in an array search, 0 if all elements have already been returned. SearchId indica... |
ftn/asin(3) -- trigonometric functions and their inverses
|
The single-precision and long double-precision routines listed above are only available in the standard math library, -lm, and in -lmx. sin, cos and tan return trigonometric functions of radian arguments x for double data types. fsin, fcos and ftan, and their ANSI-named counterparts sinf, cosf and tanf return trigonometric functions of radian TRIG(3M) TRIG(3M) arguments x for float data types. sinl, cosl and tanl do the same for long double data types. The asin routines return the arc sine in th... |
standard/asinh(3) -- inverse hyperbolic functions
|
These functions compute the designated inverse hyperbolic functions for real arguments. |
f90/asnctl(3) -- Controls function of ASSIGN, ASNFILE, ASNUNIT, and ASNRM routines
|
UNICOS, UNICOS/mk, and IRIX systems |
f90/asnqfile(3) -- Returns the assign options currently in effect for a file name or unit number
|
UNICOS, UNICOS/mk, and IRIX systems |
assert(3x) -- verify program assertion
|
This macro is useful for putting diagnostics into programs. When it is executed, if expression is false (zero), assert prints Assertion failed: expression, file xyz, line nnn on the standard error output and aborts. In the error message, xyz is the name of the source file and nnn the source line number of the assert statement. The latter are respectively the values of the preprocessor macros __FILE__ and __LINE__. Compiling with the pre... |
f90/assign(3) -- Provides library interface to assign processing
|
UNICOS, UNICOS/mk and IRIX systems |
f90/associated(3) -- Returns the pointer association status
|
UNICOS, UNICOS/mk, and IRIX systems |
libblas/asum(3) -- BLAS level ONE L1 norm functions. FORTRAN 77 SYNOPSIS double precision dasum( n, x, incx ) integer incx, n dou
|
dasum, sasum, scasum, and dzasum, compute the L1 norm of the vector x of length n and increment incx. asum <--- Sum( Abs( X(i) ) ) ) dasum and sasum asum <--- Sum( Abs(Real(X(i))) + Abs(Imag(X(i))) ) dzasum and scasum |