• Sets the m * k matrix c to the product of m * n matrix a and n * k matrix b.

    a, b and c are column-major with column strides of lda, ldb, and ldc, respectively. c must not overlap a or b.

    Type Parameters

    Parameters

    • c: T
    • ldc: number
    • a: T
    • lda: number
    • b: T
    • ldb: number
    • m: number
    • n: number
    • k: number

    Returns T

Generated using TypeDoc