Method | Description | |
---|---|---|
cGemv ( |
y = A * x + y, where x, y are vectors and A is a matrix.
|
|
dGemv ( double aStore, int aOffset, int aRowStride, int aColStride, double xStore, int xOffset, int xStride, double yStore, int yOffset, int yStride, int rows, int cols ) : void |
y = A * x + y, where x, y are vectors and A is a matrix.
|
public static cGemv ( |
||
aStore | 1 dim double array for A. | |
aOffset | int | Offset in the array for A. |
aRowStride | int | Rows in A. |
aColStride | int | Columns in A. |
xStore | 1 dim double array for x. | |
xOffset | int | Offset in the array for x. |
xStride | int | Number of entries in x. |
yStore | 1 dim double array for y. | |
yOffset | int | Offset in the array for y. |
yStride | int | Number of entries in y. |
rows | int | Geometry information for the rows. |
cols | int | Geometry information for the columns. |
return | void |
public static dGemv ( double aStore, int aOffset, int aRowStride, int aColStride, double xStore, int xOffset, int xStride, double yStore, int yOffset, int yStride, int rows, int cols ) : void | ||
aStore | double | 1 dim double array for A. |
aOffset | int | Offset in the array for A. |
aRowStride | int | Rows in A. |
aColStride | int | Columns in A. |
xStore | double | 1 dim double array for x. |
xOffset | int | Offset in the array for x. |
xStride | int | Number of entries in x. |
yStore | double | 1 dim double array for y. |
yOffset | int | Offset in the array for y. |
yStride | int | Number of entries in y. |
rows | int | Geometry information for the rows. |
cols | int | Geometry information for the columns. |
return | void |