dgesl


NAME

dgesl - (obsolete) solve the linear system Ax = b for a general matrix A, which has been LU- factored by SGECO or SGEFA, and vectors b and x.


SYNOPSIS

  SUBROUTINE DGESL( A, LDA, N, IPIVOT, B, JOB)
  INTEGER LDA, N, JOB
  INTEGER IPIVOT(*)
  DOUBLE PRECISION A(LDA,*), B(*)
 
  SUBROUTINE DGESL_64( A, LDA, N, IPIVOT, B, JOB)
  INTEGER*8 LDA, N, JOB
  INTEGER*8 IPIVOT(*)
  DOUBLE PRECISION A(LDA,*), B(*)
 

C INTERFACE

#include <sunperf.h>

void dgesl(double *a, int lda, int n, int *ipivot, double *b, int job);

void dgesl_64(double *a, long lda, long n, long *ipivot, double *b, long job);


ARGUMENTS

* A (input)
LU factorization of the matrix A, as computed by SGECO or SGEFA.

* LDA (input)
Leading dimension of the array A as specified in a dimension or type statement. LDA >= max(1,N).

* N (input)
Order of the matrix A. N >= 0.

* IPIVOT (input)
Pivot vector as computed by SGECO or SGEFA.

* B (input/output)
On entry, the right-hand side vector b. On exit, the solution vector x.

* JOB (input)
Determines which operation the subroutine will perform:

        not 0   Solve the linear system A^Tx = b.
for real matrices.