spofa


NAME

spofa - (obsolete) compute a Cholesky factorization of a symmetric positive definite matrix A. It is typical to follow a call to SPOFA with a call to SPOSL to solve Ax = b or to SPODI to compute the determinant and inverse of A.


SYNOPSIS

  SUBROUTINE SPOFA( A, LDA, N, INFO)
  INTEGER LDA, N, INFO
  REAL A(LDA,*)
 
  SUBROUTINE SPOFA_64( A, LDA, N, INFO)
  INTEGER*8 LDA, N, INFO
  REAL A(LDA,*)
 

C INTERFACE

#include <sunperf.h>

void spofa(float *a, int lda, int n, int *info);

void spofa_64(float *a, long lda, long n, long *info);


ARGUMENTS

* A (input/output)
On entry, the upper triangle of the matrix A. On exit, a Cholesky factorization of the matrix A. The strict lower triangle of A is not referenced.

* 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.

* INFO (output)
On exit:

INFO = 0 Subroutine completed normally.

INFO > 0 Returns a value k if the leading minor of order k is not positive definite.