Click or drag to resize

BLASdgemv Method

Namespace:  DHIMath.Numerics
Assembly:  DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 18.0.0.0 (11.1.1.1111)
Syntax
C#
public static void dgemv(
	BlasTranspose trans,
	int m,
	int n,
	double alpha,
	double[] a,
	int lda,
	double[] x,
	int incx,
	double beta,
	double[] y,
	int incy
)

Parameters

trans
Type: DHIMath.NumericsBlasTranspose
m
Type: SystemInt32
n
Type: SystemInt32
alpha
Type: SystemDouble
a
Type: SystemDouble
lda
Type: SystemInt32
x
Type: SystemDouble
incx
Type: SystemInt32
beta
Type: SystemDouble
y
Type: SystemDouble
incy
Type: SystemInt32
See Also