Scroll to navigation

DPOTRS(1) LAPACK routine (version 3.2) DPOTRS(1)

NAME

DPOTRS - solves a system of linear equations A*X = B with a symmetric positive definite matrix A using the Cholesky factorization A = U**T*U or A = L*L**T computed by DPOTRF

SYNOPSIS

UPLO, N, NRHS, A, LDA, B, LDB, INFO )

CHARACTER UPLO INTEGER INFO, LDA, LDB, N, NRHS DOUBLE PRECISION A( LDA, * ), B( LDB, * )

PURPOSE

DPOTRS solves a system of linear equations A*X = B with a symmetric positive definite matrix A using the Cholesky factorization A = U**T*U or A = L*L**T computed by DPOTRF.

ARGUMENTS

= 'U': Upper triangle of A is stored;
= 'L': Lower triangle of A is stored.
The order of the matrix A. N >= 0.
The number of right hand sides, i.e., the number of columns of the matrix B. NRHS >= 0.
The triangular factor U or L from the Cholesky factorization A = U**T*U or A = L*L**T, as computed by DPOTRF.
The leading dimension of the array A. LDA >= max(1,N).
On entry, the right hand side matrix B. On exit, the solution matrix X.
The leading dimension of the array B. LDB >= max(1,N).
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value
November 2008 LAPACK routine (version 3.2)