Click or drag to resize

BLASdgemm 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 dgemm(
	BlasTranspose transa,
	BlasTranspose transb,
	int m,
	int n,
	int k,
	double alpha,
	double[] a,
	int lda,
	double[] b,
	int ldb,
	double beta,
	double[] c,
	int ldc
)

Parameters

transa
Type: DHIMath.NumericsBlasTranspose
transb
Type: DHIMath.NumericsBlasTranspose
m
Type: SystemInt32
n
Type: SystemInt32
k
Type: SystemInt32
alpha
Type: SystemDouble
a
Type: SystemDouble
lda
Type: SystemInt32
b
Type: SystemDouble
ldb
Type: SystemInt32
beta
Type: SystemDouble
c
Type: SystemDouble
ldc
Type: SystemInt32
See Also