C# 클래스 YAMP.Numerics.BlasL2

Provides BLAS Level 2 Access, this level contains matrix-vector operations of the form y = A * x + y.
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
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.

메소드 상세

cGemv() 공개 정적인 메소드

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.
리턴 void

dGemv() 공개 정적인 메소드

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.
리턴 void