C# Class YAMP.Numerics.BlasL2

Provides BLAS Level 2 Access, this level contains matrix-vector operations of the form y = A * x + y.
Afficher le fichier Open project: FlorianRappl/YAMP

Méthodes publiques

Méthode Description
cGemv ( ScalarValue aStore, int aOffset, int aRowStride, int aColStride, ScalarValue xStore, int xOffset, int xStride, ScalarValue yStore, int yOffset, int yStride, int rows, int cols ) : void

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.

Method Details

cGemv() public static méthode

y = A * x + y, where x, y are vectors and A is a matrix.
public static cGemv ( ScalarValue aStore, int aOffset, int aRowStride, int aColStride, ScalarValue xStore, int xOffset, int xStride, ScalarValue yStore, int yOffset, int yStride, int rows, int cols ) : void
aStore YAMP.ScalarValue 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 YAMP.ScalarValue 1 dim double array for x.
xOffset int Offset in the array for x.
xStride int Number of entries in x.
yStore YAMP.ScalarValue 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.
Résultat void

dGemv() public static méthode

y = A * x + y, where x, y are vectors and A is a matrix.
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.
Résultat void