All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class linear_algebra.Blas_f77

java.lang.Object
   |
   +----linear_algebra.Blas_f77

public class Blas_f77
extends Object

This class contains Java versions of a number of the LINPACK basic linear algebra subroutines (blas):

  1. isamax_f77
  2. daxpy_f77
  3. ddot_f77
  4. dscal_f77
  5. dswap_f77
  6. dnrm2_f77
  7. dcopy_f77
  8. drotg_f77
It also contains utility routines that the translator found useful while translating the FORTRAN code to Java code. "col" indicates that the routine operates on two columns of a matrix. "colv" indicates that the routine operates on a column of a matrix and a vector. The "p" at the end of dscalp, dnrm2p, and dcopyp indicates that these routines operate on a portion of a vector:
  1. colisamax_f77
  2. colaxpy_f77
  3. colvaxpy_f77
  4. colvraxpy_f77
  5. coldot_f77
  6. colvdot_f77
  7. colscal_f77
  8. dscalp_f77
  9. colswap_f77
  10. colnrm2_f77
  11. dnrm2p_f77
  12. dcopyp_f77
  13. colrot_f77
  14. sign_f77

IMPORTANT: The "_f77" suffixes indicate that these routines use FORTRAN style indexing. For example, you will see

   for (i = 1; i <= n; i++)
rather than
   for (i = 0; i < n; i++)
To use the "_f77" routines you will have to declare your vectors and matrices to be one element larger (e.g., v[101] rather than v[100], and a[101][101] rather than a[100][100]), and you will have to fill elements 1 through n rather than elements 0 through n - 1. Versions of these programs that use C/Java style indexing will soon be available. They will end with the suffix "_j".

This class was translated by a statistician from FORTRAN versions of the LINPACK blas. It is NOT an official translation. It wastes memory by failing to use the first elements of vectors. When public domain Java numerical analysis routines become available from the people who produce LAPACK, then THE CODE PRODUCED BY THE NUMERICAL ANALYSTS SHOULD BE USED.

Meanwhile, if you have suggestions for improving this code, please contact Steve Verrill at sverrill@fs.fed.us.


Constructor Index

 o Blas_f77()

Method Index

 o colaxpy_f77(int, double, double[][], int, int, int)

This method multiplies a constant times a portion of a column of a matrix and adds the product to the corresponding portion of another column of the matrix --- a portion of col2 is replaced by the corresponding portion of a*col1 + col2.

 o coldot_f77(int, double[][], int, int, int)

This method calculates the dot product of portions of two columns of a matrix.

 o colisamax_f77(int, double[][], int, int, int)

This method finds the index of the element of a portion of a column of a matrix that has the maximum absolute value.

 o colnrm2_f77(int, double[][], int, int)

This method calculates the Euclidean norm of a portion of a column of a matrix.

 o colrot_f77(int, double[][], int, int, double, double)

This method "applies a plane rotation." It is a modification of the LINPACK function DROT.

 o colscal_f77(int, double, double[][], int, int)

This method scales a portion of a column of a matrix by a constant.

 o colswap_f77(int, double[][], int, int)

This method interchanges two columns of a matrix.

 o colvaxpy_f77(int, double, double[][], double[], int, int)

This method multiplies a constant times a portion of a column of a matrix x[ ][ ] and adds the product to the corresponding portion of a vector y[ ] --- a portion of y[ ] is replaced by the corresponding portion of ax[ ][j] + y[ ].

 o colvdot_f77(int, double[][], double[], int, int)

This method calculates the dot product of a portion of a column of a matrix and the corresponding portion of a vector.

 o colvraxpy_f77(int, double, double[], double[][], int, int)

This method multiplies a constant times a portion of a vector y[ ] and adds the product to the corresponding portion of a column of a matrix x[ ][ ] --- a portion of column j of x[ ][ ] is replaced by the corresponding portion of ay[ ] + x[ ][j].

 o daxpy_f77(int, double, double[], int, double[], int)

This method multiplies a constant times a vector and adds the product to another vector --- dy[ ] = da*dx[ ] + dy[ ].

 o dcopy_f77(int, double[], int, double[], int)

This method copies the vector dx[ ] to the vector dy[ ].

 o dcopyp_f77(int, double[], double[], int)

This method copies a portion of vector x[ ] to the corresponding portion of vector y[ ].

 o ddot_f77(int, double[], int, double[], int)

This method calculates the dot product of two vectors.

 o dnrm2_f77(int, double[], int)

This method calculates the Euclidean norm of the vector stored in dx[ ] with storage increment incx.

 o dnrm2p_f77(int, double[], int)

This method calculates the Euclidean norm of a portion of a vector x[ ].

 o drotg_f77(double[])

This method constructs a Givens plane rotation.

 o dscal_f77(int, double, double[], int)

This method scales a vector by a constant.

 o dscalp_f77(int, double, double[], int)

This method scales a portion of a vector by a constant.

 o dswap_f77(int, double[], int, double[], int)

This method interchanges two vectors.

 o isamax_f77(int, double[], int)

This method finds the index of the element of a vector that has the maximum absolute value.

 o matmat_f77(double[][], double[][], double[][], int, int, int)

This method multiplies an n x p matrix by a p x r matrix.

 o mattran_f77(double[][], double[][], int, int)

This method obtains the transpose of an n x p matrix.

 o matvec_f77(double[][], double[], double[], int, int)

This method multiplies an n x p matrix by a p x 1 vector.

 o sign_f77(double, double)

This method implements the FORTRAN sign (not sin) function.

Constructors

 o Blas_f77
 public Blas_f77()

Methods

 o isamax_f77
 public static int isamax_f77(int n,
                              double x[],
                              int incx)

This method finds the index of the element of a vector that has the maximum absolute value. It is a translation from FORTRAN to Java of the LINPACK function ISAMAX. In the LINPACK listing ISAMAX is attributed to Jack Dongarra with a date of March 11, 1978. Translated by Steve Verrill, March 10, 1998.

Parameters:
n - The number of elements to be checked
x[ ] - vector
incx - The subscript increment for x[ ]
 o colisamax_f77
 public static int colisamax_f77(int n,
                                 double x[][],
                                 int incx,
                                 int begin,
                                 int j)

This method finds the index of the element of a portion of a column of a matrix that has the maximum absolute value. It is a modification of the LINPACK function ISAMAX. In the LINPACK listing ISAMAX is attributed to Jack Dongarra with a date of March 11, 1978. Translated by Steve Verrill, March 10, 1998.

Parameters:
n - The number of elements to be checked
x[ ][ ] - The matrix
incx - The subscript increment for x[ ][ ]
begin - The starting row
j - The id of the column
 o daxpy_f77
 public static void daxpy_f77(int n,
                              double da,
                              double dx[],
                              int incx,
                              double dy[],
                              int incy)

This method multiplies a constant times a vector and adds the product to another vector --- dy[ ] = da*dx[ ] + dy[ ]. It uses unrolled loops for increments equal to one. It is a translation from FORTRAN to Java of the LINPACK subroutine DAXPY. In the LINPACK listing DAXPY is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, February 25, 1997.

Parameters:
n - The order of the vectors dy[ ] and dx[ ]
da - The constant
dx[ ] - This vector will be multiplied by the constant da
incx - The subscript increment for dx[ ]
dy[ ] - This vector will be added to da*dx[ ]
incy - The subscript increment for dy[ ]
 o ddot_f77
 public static double ddot_f77(int n,
                               double dx[],
                               int incx,
                               double dy[],
                               int incy)

This method calculates the dot product of two vectors. It uses unrolled loops for increments equal to one. It is a translation from FORTRAN to Java of the LINPACK function DDOT. In the LINPACK listing DDOT is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, February 25, 1997.

Parameters:
n - The order of the vectors dx[ ] and dy[ ]
dx[ ] - vector
incx - The subscript increment for dx[ ]
dy[ ] - vector
incy - The subscript increment for dy[ ]
 o dscal_f77
 public static void dscal_f77(int n,
                              double da,
                              double dx[],
                              int incx)

This method scales a vector by a constant. It uses unrolled loops for an increment equal to one. It is a translation from FORTRAN to Java of the LINPACK subroutine DSCAL. In the LINPACK listing DSCAL is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, February 25, 1997.

Parameters:
n - The order of the vector dx[ ]
da - The constant
dx[ ] - This vector will be multiplied by the constant da
incx - The subscript increment for dx[ ]
 o dswap_f77
 public static void dswap_f77(int n,
                              double dx[],
                              int incx,
                              double dy[],
                              int incy)

This method interchanges two vectors. It uses unrolled loops for increments equal to one. It is a translation from FORTRAN to Java of the LINPACK function DSWAP. In the LINPACK listing DSWAP is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, February 25, 1997.

Parameters:
n - The order of the vectors dx[ ] and dy[ ]
dx[ ] - vector
incx - The subscript increment for dx[ ]
dy[ ] - vector
incy - The subscript increment for dy[ ]
 o dnrm2_f77
 public static double dnrm2_f77(int n,
                                double x[],
                                int incx)

This method calculates the Euclidean norm of the vector stored in dx[ ] with storage increment incx. It is a translation from FORTRAN to Java of the LINPACK function DNRM2. In the LINPACK listing DNRM2 is attributed to C.L. Lawson with a date of January 8, 1978. The routine below is based on a more recent DNRM2 version that is attributed in LAPACK documentation to Sven Hammarling. Translated by Steve Verrill, February 25, 1997.

Parameters:
n - The order of the vector x[ ]
x[ ] - vector
incx - The subscript increment for x[ ]
 o dcopy_f77
 public static void dcopy_f77(int n,
                              double dx[],
                              int incx,
                              double dy[],
                              int incy)

This method copies the vector dx[ ] to the vector dy[ ]. It uses unrolled loops for increments equal to one. It is a translation from FORTRAN to Java of the LINPACK subroutine DCOPY. In the LINPACK listing DCOPY is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, March 1, 1997.

Parameters:
n - The order of dx[ ] and dy[ ]
dx[ ] - vector
incx - The subscript increment for dx[ ]
dy[ ] - vector
incy - The subscript increment for dy[ ]
 o drotg_f77
 public static void drotg_f77(double rotvec[])

This method constructs a Givens plane rotation. It is a translation from FORTRAN to Java of the LINPACK subroutine DROTG. In the LINPACK listing DROTG is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, March 3, 1997.

Parameters:
rotvec[] - Contains the a,b,c,s values. In Java they cannot be passed as primitive types (e.g., double or int or ...) if we want their return values to be altered.
 o colaxpy_f77
 public static void colaxpy_f77(int nrow,
                                double a,
                                double x[][],
                                int begin,
                                int j1,
                                int j2)

This method multiplies a constant times a portion of a column of a matrix and adds the product to the corresponding portion of another column of the matrix --- a portion of col2 is replaced by the corresponding portion of a*col1 + col2. It uses unrolled loops. It is a modification of the LINPACK subroutine DAXPY. In the LINPACK listing DAXPY is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, February 26, 1997.

Parameters:
nrow - The number of rows involved
a - The constant
x[ ][ ] - The matrix
begin - The starting row
j1 - The id of col1
j2 - The id of col2
 o colvaxpy_f77
 public static void colvaxpy_f77(int nrow,
                                 double a,
                                 double x[][],
                                 double y[],
                                 int begin,
                                 int j)

This method multiplies a constant times a portion of a column of a matrix x[ ][ ] and adds the product to the corresponding portion of a vector y[ ] --- a portion of y[ ] is replaced by the corresponding portion of ax[ ][j] + y[ ]. It uses unrolled loops. It is a modification of the LINPACK subroutine DAXPY. In the LINPACK listing DAXPY is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, March 1, 1997.

Parameters:
nrow - The number of rows involved
a - The constant
x[ ][ ] - The matrix
y[ ] - The vector
begin - The starting row
j - The id of the column of the x matrix
 o colvraxpy_f77
 public static void colvraxpy_f77(int nrow,
                                  double a,
                                  double y[],
                                  double x[][],
                                  int begin,
                                  int j)

This method multiplies a constant times a portion of a vector y[ ] and adds the product to the corresponding portion of a column of a matrix x[ ][ ] --- a portion of column j of x[ ][ ] is replaced by the corresponding portion of ay[ ] + x[ ][j]. It uses unrolled loops. It is a modification of the LINPACK subroutine DAXPY. In the LINPACK listing DAXPY is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, March 3, 1997.

Parameters:
nrow - The number of rows involved
a - The constant
y[ ] - The vector
x[ ][ ] - The matrix
begin - The starting row
j - The id of the column of the x matrix
 o coldot_f77
 public static double coldot_f77(int nrow,
                                 double x[][],
                                 int begin,
                                 int j1,
                                 int j2)

This method calculates the dot product of portions of two columns of a matrix. It uses unrolled loops. It is a modification of the LINPACK function DDOT. In the LINPACK listing DDOT is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, February 27, 1997.

Parameters:
nrow - The number of rows involved
x[ ][ ] - The matrix
begin - The starting row
j1 - The id of the first column
j2 - The id of the second column
 o colvdot_f77
 public static double colvdot_f77(int nrow,
                                  double x[][],
                                  double y[],
                                  int begin,
                                  int j)

This method calculates the dot product of a portion of a column of a matrix and the corresponding portion of a vector. It uses unrolled loops. It is a modification of the LINPACK function DDOT. In the LINPACK listing DDOT is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, March 1, 1997.

Parameters:
nrow - The number of rows involved
x[ ][ ] - The matrix
y[ ] - The vector
begin - The starting row
j - The id of the column of the matrix
 o colscal_f77
 public static void colscal_f77(int nrow,
                                double a,
                                double x[][],
                                int begin,
                                int j)

This method scales a portion of a column of a matrix by a constant. It uses unrolled loops. It is a modification of the LINPACK subroutine DSCAL. In the LINPACK listing DSCAL is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, February 27, 1997.

Parameters:
nrow - The number of rows involved
a - The constant
x[ ][ ] - The matrix
begin - The starting row
j - The id of the column
 o dscalp_f77
 public static void dscalp_f77(int nrow,
                               double a,
                               double x[],
                               int begin)

This method scales a portion of a vector by a constant. It uses unrolled loops. It is a modification of the LINPACK subroutine DSCAL. In the LINPACK listing DSCAL is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, March 3, 1997.

Parameters:
nrow - The number of rows involved
a - The constant
x[ ] - The vector
begin - The starting row
 o colswap_f77
 public static void colswap_f77(int n,
                                double x[][],
                                int j1,
                                int j2)

This method interchanges two columns of a matrix. It uses unrolled loops. It is a modification of the LINPACK function DSWAP. In the LINPACK listing DSWAP is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, February 26, 1997.

Parameters:
n - The number of rows of the matrix
x[ ][ ] - The matrix
j1 - The id of the first column
j2 - The id of the second column
 o colnrm2_f77
 public static double colnrm2_f77(int nrow,
                                  double x[][],
                                  int begin,
                                  int j)

This method calculates the Euclidean norm of a portion of a column of a matrix. It is a modification of the LINPACK function dnrm2. In the LINPACK listing dnrm2 is attributed to C.L. Lawson with a date of January 8, 1978. The routine below is based on a more recent dnrm2 version that is attributed in LAPACK documentation to Sven Hammarling. Translated and modified by Steve Verrill, February 26, 1997.

Parameters:
nrow - The number of rows involved
x[ ][ ] - The matrix
begin - The starting row
j - The id of the column
 o dnrm2p_f77
 public static double dnrm2p_f77(int nrow,
                                 double x[],
                                 int begin)

This method calculates the Euclidean norm of a portion of a vector x[ ]. It is a modification of the LINPACK function dnrm2. In the LINPACK listing dnrm2 is attributed to C.L. Lawson with a date of January 8, 1978. The routine below is based on a more recent dnrm2 version that is attributed in LAPACK documentation to Sven Hammarling. Translated by Steve Verrill, March 3, 1997.

Parameters:
nrow - The number of rows involved
x[ ] - vector
begin - The starting row
 o dcopyp_f77
 public static void dcopyp_f77(int nrow,
                               double x[],
                               double y[],
                               int begin)

This method copies a portion of vector x[ ] to the corresponding portion of vector y[ ]. It uses unrolled loops. It is a modification of the LINPACK subroutine dcopy. In the LINPACK listing dcopy is attributed to Jack Dongarra with a date of 3/11/78. Translated by Steve Verrill, March 1, 1997.

Parameters:
nrow - The number of rows involved
x[ ] - vector
y[ ] - vector
begin - The starting row
 o colrot_f77
 public static void colrot_f77(int n,
                               double x[][],
                               int j1,
                               int j2,
                               double c,
                               double s)

This method "applies a plane rotation." It is a modification of the LINPACK function DROT. In the LINPACK listing DROT is attributed to Jack Dongarra with a date of 3/11/78. Translated and modified by Steve Verrill, March 4, 1997.

Parameters:
n - The order of x[ ][ ]
x[ ][ ] - The matrix
j1 - The id of the first column
j2 - The id of the second column
c - "cos"
s - "sin"
 o sign_f77
 public static double sign_f77(double a,
                               double b)

This method implements the FORTRAN sign (not sin) function. See the code for details. Created by Steve Verrill, March 1997.

Parameters:
a - a
b - b
 o matmat_f77
 public static void matmat_f77(double a[][],
                               double b[][],
                               double c[][],
                               int n,
                               int p,
                               int r)

This method multiplies an n x p matrix by a p x r matrix. Created by Steve Verrill, March 1997.

Parameters:
a[ ][ ] - The left matrix
b[ ][ ] - The right matrix
c[ ][ ] - The product
n - n
p - p
r - r
 o mattran_f77
 public static void mattran_f77(double a[][],
                                double at[][],
                                int n,
                                int p)

This method obtains the transpose of an n x p matrix. Created by Steve Verrill, March 1997.

Parameters:
a[ ][ ] - matrix
at[ ][ ] - transpose of the matrix
n - n
p - p
 o matvec_f77
 public static void matvec_f77(double a[][],
                               double b[],
                               double c[],
                               int n,
                               int p)

This method multiplies an n x p matrix by a p x 1 vector. Created by Steve Verrill, March 1997.

Parameters:
a[ ][ ] - The matrix
b[ ] - The vector
c[ ] - The product
n - n
p - p

All Packages  Class Hierarchy  This Package  Previous  Next  Index