*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages              
Title
Content
Arch
Section
 
 complib/CPPDI(3) -- CPPDI computes the determinant and inverse of a complex Hermitian positive definite matrix using the factors c
    On Entry AP COMPLEX (N*(N+1)/2) the output from CPPCO or CPPFA. N INTEGER the order of the matrix A . JOB INTEGER = 11 both determinant and inverse. = 01 inverse only. = 10 determinant only. On Return AP the upper triangular half of the inverse . The strict lower triangle is unaltered. DET REAL(2) determinant of original matrix if requested. Otherwise not referenced. Determinant = DET(1) * 10.0**DET(2) with 1.0 .LE. DET(1) .LT. 10.0 or DET(1) .EQ. 0.0 . Error Condition A division by zero will oc...
 complib/cppequ(3) -- compute row and column scalings intended to equilibrate a Hermitian positive definite matrix A in packed stora
    CPPEQU computes row and column scalings intended to equilibrate a Hermitian positive definite matrix A in packed storage and reduce its condition number (with respect to the two-norm). S contains the scale factors, S(i)=1/sqrt(A(i,i)), chosen so that the scaled matrix B with elements B(i,j)=S(i)*A(i,j)*S(j) has ones on the diagonal. This choice of S puts the condition number of B within a factor N of the smallest possible condition number over all possible diagonal scalings....
 complib/CPPFA(3) -- CPPFA factors a complex Hermitian positive definite matrix stored in packed form. CPPFA is usually called by C
    On Entry AP COMPLEX (N*(N+1)/2) the packed form of a Hermitian matrix A . The columns of the upper triangle are stored sequentially in a one-dimensional array of length N*(N+1)/2 . See comments below for details. N INTEGER the order of the matrix A . On Return AP an upper triangular matrix R , stored in packed form, so that A = CTRANS(R)*R . INFO INTEGER = 0 for normal return. = K If the leading minor of order K is not positive definite. Packed Storage The following program segment will pack the...
 complib/cpprfs(3) -- when the coefficient matrix is Hermitian positive definite and packed, and provides error bounds and backward
    CPPRFS improves the computed solution to a system of linear equations when the coefficient matrix is Hermitian positive definite and packed, and provides error bounds and backward error estimates for the solution.
 complib/CPPSL(3) -- CPPSL solves the complex Hermitian positive definite system A * X = B using the factors computed by CPPCO or C
    On Entry AP COMPLEX (N*(N+1)/2) the output from CPPCO or CPPFA. N INTEGER the order of the matrix A . B COMPLEX(N) the right hand side vector. On Return B the solution vector X . Error Condition A division by zero will occur if the input factor contains a zero on the diagonal. Technically this indicates singularity but it is usually caused by improper subroutine arguments. It will not occur if the subroutines are called correctly and INFO .EQ. 0 . To compute INVERSE(A) * C where C is a matrix wi...
 complib/cppsv(3) -- X = B,
    CPPSV computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N Hermitian positive definite matrix stored in packed format and X and B are N-by-NRHS matrices. The Cholesky decomposition is used to factor A as A = U**H* U, if UPLO = 'U', or A = L * L**H, if UPLO = 'L', where U is an upper triangular matrix and L is a lower triangular matrix. The factored form of A is then used to solve the system of equations A * X = B....
 complib/cppsvx(3) -- compute the solution to a complex system of linear equations A * X = B,
    CPPSVX uses the Cholesky factorization A = U**H*U or A = L*L**H to compute the solution to a complex system of linear equations A * X = B, where A is an N-by-N Hermitian positive definite matrix stored in packed format and X and B are N-by-NRHS matrices. Error bounds on the solution and a condition estimate are also provided.
 complib/cpptrf(3) -- compute the Cholesky factorization of a complex Hermitian positive definite matrix A stored in packed format
    CPPTRF computes the Cholesky factorization of a complex Hermitian positive definite matrix A stored in packed format. The factorization has the form A = U**H * U, if UPLO = 'U', or A = L * L**H, if UPLO = 'L', where U is an upper triangular matrix and L is lower triangular.
 complib/cpptri(3) -- compute the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**
    CPPTRI computes the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPPTRF.
 complib/cpptrs(3) -- solve a system of linear equations A*X = B with a Hermitian positive definite matrix A in packed storage using
    CPPTRS solves a system of linear equations A*X = B with a Hermitian positive definite matrix A in packed storage using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPPTRF.
 complib/cprod1d(3) -- Compute the product of a 1D Fourier transform with a 1D filter.
    cprod1d and zprod1d compute the product of the Fourier transforms of a complex sequence of N samples with the Fourier transforms of a complex filter. Note, the product of the Fourier transforms of two sequences is equal to the Fourier transform of their convolution.
 complib/cprod2d(3) -- Compute the product of a 2D Fourier transforms with a 2D filter.
    cprod2d and zprod2d compute the product of the Fourier transforms of 2D complex sequence (size N1xN2) with the Fourier transform of 2D filter. Note, the product of the Fourier transforms of two sequences is equal to the Fourier transform of their convolution.
 complib/cprod3d(3) -- Compute the product of a 3D Fourier transforms with a 3D filter.
    cprod3d and zprod3d compute the product of the Fourier transforms of 3D complex sequence (size N1xN2xN3) with the Fourier transform of 3D filter. Note, the product of the Fourier transforms of two sequences is equal to the Fourier transform of their convolution.
 complib/cprodm1d(3) -- Compute the product of Multiple 1D Fourier transforms with Multiple 1D filters.
    cprodm1d and zprodm1d compute the product of the Fourier transforms of P complex sequences of N samples with the Fourier transforms of P complex filters. Note, the product of the Fourier transforms of two sequences is equal to the Fourier transform of their convolution.
 complib/cptcon(3) -- compute the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite tridia
    CPTCON computes the reciprocal of the condition number (in the 1-norm) of a complex Hermitian positive definite tridiagonal matrix using the factorization A = L*D*L**H or A = U**H*D*U computed by CPTTRF. Norm(inv(A)) is computed by a direct method, and the reciprocal of the condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))).
<<  [Prev]  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  
46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  [Next]  >>
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service