** // For triangular packed matrix A and vector X compute // X = A * X, X = A.T * X func ztpmv(uplo, transA, diag string, N int, Ap []complex128, X []complex128, incX int) { cuplo := C.CString(uplo) defer C.free(unsafe.Pointer(cuplo)) ctransA := C.CString(transA) defer C.free(unsafe.Pointer(c
(transA, transB string, M int, N int, K int,
alpha complex128, A []complex128, lda int, B []complex128, ldb int, beta complex128,
C []complex128, ldc int)
source not stored for this graph (policy: none)