All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.netlib.blas.Daxpy

java.lang.Object
   |
   +----org.netlib.blas.Daxpy

public class Daxpy
extends Object
Following is the description from the original
Fortran source.  For each array argument, the Java
version will include an integer offset parameter, so
the arguments may not match the description exactly.
Contact seymour@cs.utk.edu with any questions.

c c constant times a vector plus a vector. c uses unrolled loops for increments equal to one. c jack dongarra, linpack, 3/11/78. c modified 12/3/93, array(1) declarations changed to array(*) c


Constructor Index

 o Daxpy()

Method Index

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

Constructors

 o Daxpy
 public Daxpy()

Methods

 o daxpy
 public static void daxpy(int n,
                          double da,
                          double dx[],
                          int _dx_offset,
                          int incx,
                          double dy[],
                          int _dy_offset,
                          int incy)

All Packages  Class Hierarchy  This Package  Previous  Next  Index