NAME

sgttrf - compute an LU factorization of a real tridiagonal matrix A using elimination with partial pivoting and row interchanges


SYNOPSIS

  SUBROUTINE SGTTRF( N, LOW, DIAG, UP1, UP2, IPIVOT, INFO)
  INTEGER N, INFO
  INTEGER IPIVOT(*)
  REAL LOW(*), DIAG(*), UP1(*), UP2(*)
  SUBROUTINE SGTTRF_64( N, LOW, DIAG, UP1, UP2, IPIVOT, INFO)
  INTEGER*8 N, INFO
  INTEGER*8 IPIVOT(*)
  REAL LOW(*), DIAG(*), UP1(*), UP2(*)

F95 INTERFACE

  SUBROUTINE GTTRF( [N], LOW, DIAG, UP1, UP2, IPIVOT, [INFO])
  INTEGER :: N, INFO
  INTEGER, DIMENSION(:) :: IPIVOT
  REAL, DIMENSION(:) :: LOW, DIAG, UP1, UP2
  SUBROUTINE GTTRF_64( [N], LOW, DIAG, UP1, UP2, IPIVOT, [INFO])
  INTEGER(8) :: N, INFO
  INTEGER(8), DIMENSION(:) :: IPIVOT
  REAL, DIMENSION(:) :: LOW, DIAG, UP1, UP2

C INTERFACE

#include <sunperf.h>

void sgttrf(int n, float *low, float *diag, float *up1, float *up2, int *ipivot, int *info);

void sgttrf_64(long n, float *low, float *diag, float *up1, float *up2, long *ipivot, long *info);


PURPOSE

sgttrf computes an LU factorization of a real tridiagonal matrix A using elimination with partial pivoting and row interchanges.

The factorization has the form

   A = L * U

where L is a product of permutation and unit lower bidiagonal matrices and U is upper triangular with nonzeros in only the main diagonal and first two superdiagonals.


ARGUMENTS