|
complib/cor2d(3) -- 2D Correlation in the space domain. FORTRAN SPECIFICATION subroutine SCOR2D( f, incf, ldf, ifx0, n_fx, ify0, n
|
SCOR2D, DCOR2D, CCOR2D and ZCOR2D compute a 2D correlation in the space domain: h(i,j) = Sum[ f(k,l) * g(i+k,j+l) ] |
complib/corm1d(3) -- N 1D convolutions in the time domain. FORTRAN SPECIFICATION subroutine SCORM1D( f, incf, ldf, ifx0, n_fx, ny,
|
SCORM1D, DCORM1D, CCORM1D and DCORM1D compute N 1D convolutions in the time domain : h(i,j) = Sum[ f(k,j) * g(i-k) ] with j=1,...,N _CORM1D can be used instead of _COR2D when the 2D filter can be decomposed into the convolution of two 1D filters. For example: ------------------ ------------------ ------------------ | 0.25 -.50 0.25 | | 0. -.50 0. | | 0. 0. 0. | | -.50 1.00 -.50 | = | 0. 1.00 0. | (*) | -.50 1.00 -.50 | | 0.25 -.50 0.25 | | 0. -.50 0. | | 0. 0. 0. | |________________| |__________... |
|
complib/CORTB(3) -- EISPACK routine. This subroutine forms the eigenvectors of a COMPLEX GENERAL matrix by back transforming those
|
On INPUT NM must be set to the row dimension of two-dimensional array parameters as declared in the calling program dimension statement. LOW and IGH are integers determined by the balancing subroutine CBAL. If CBAL has not been used, set LOW=1 and IGH equal to the order of the matrix. AR and AI contain information about the unitary transformations used in the reduction by CORTH in their strict lower triangles. ORTR and ORTI contain further information about the transformations used in the reduct... |
complib/CORTH(3) -- EISPACK routine. Given a COMPLEX GENERAL matrix, this subroutine reduces a submatrix situated in rows and colu
|
On INPUT NM must be set to the row dimension of two-dimensional array parameters as declared in the calling program dimension statement. N is the order of the matrix. LOW and IGH are integers determined by the balancing subroutine CBAL. If CBAL has not been used, set LOW=1, IGH=N. AR and AI contain the real and imaginary parts, respectively, of the complex input matrix. On OUTPUT AR and AI contain the real and imaginary parts, respectively, of the Hessenberg matrix. Information about the unitary... |
f90/cos(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 Page 1 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 sin... |
ftn/cos(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 Page 1 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 sin... |
ftn/cosh(3) -- hyperbolic functions
|
The long double and single-precision routines listed above are only available in the standard math library, -lm and in -lmx. These functions compute the designated hyperbolic functions for double, float, and long double arguments. |
f90/cot(3) -- Computes cotangent
|
UNICOS, UNICOS/mk, and IRIX systems |
f90/count(3) -- Counts the number of true array elements
|
UNICOS, UNICOS/mk, and IRIX systems |
standard/cpack(3) -- specifies RGBA color with a single packed 32-bit integer
|
pack expects a packed integer containing the RGBA (red, green, blue, alpha) values you want to assign as the current color. Expressed in hexadecimal, the format of the packed integer is 0xaabbggrr, where: aa is the alpha value, bb is the blue value, gg is the green value, and rr is the red value. RGBA component values range from 0 to 0xFF (255). |
perl5/CPAN(3) -- query, download and build perl modules from CPAN sites
|
The CPAN module is designed to automate the make and install of perl modules and extensions. It includes some searching capabilities and knows how to use Net::FTP or LWP (or lynx or an external ftp client) to fetch the raw data from the net. Modules are fetched from one or more of the mirrored CPAN (Comprehensive Perl Archive Network) sites and unpacked in a dedicated directory. The CPAN module also supports the concept of named and versioned 'bundles' of modules. Bundles simplify the handling... |
perl5/CPAN::FirstTime(3) -- Utility for CPAN::Config file Initialization
|
The init routine asks a few questions and writes a CPAN::Config file. Nothing special. PPPPaaaaggggeeee 1111 |
perl5/CPAN::Nox(3) -- Wrapper around CPAN.pm without using any XS module
|
This package has the same functionality as CPAN.pm, but tries to prevent the usage of compiled extensions during it's own execution. It's primary purpose is a rescue in case you upgraded perl and broke binary compatibility somehow. |
complib/CPBCO(3) -- CPBCO factors a complex Hermitian positive definite matrix stored in band form and estimates the condition of
|
On Entry ABD COMPLEX(LDA, N) the matrix to be factored. The columns of the upper triangle are stored in the columns of ABD and the diagonals of the upper triangle are stored in the rows of ABD . See the comments below for details. LDA INTEGER the leading dimension of the array ABD . LDA must be .GE. M + 1 . N INTEGER the order of the matrix A . M INTEGER the number of diagonals above the main diagonal. 0 .LE. M .LT. N . On Return ABD an upper triangular matrix R , stored in band form, so that A ... |
complib/cpbcon(3) -- estimate the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite band
|
CPBCON estimates the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite band matrix using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPBTRF. An estimate is obtained for norm(inv(A)), and the reciprocal of the condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))). |