Function dsymm

  • computes a scalar-matrix-matrix product with one symmetric matrix and adds the result to a scalar-matrix product defined as C := alpha * A * B + beta * C or C := alpha * B * A + beta * C where A is a symmetric matrix

    Parameters

    • side: MatrixLeftRight
    • uplo: MatrixUpperLower
    • m: number
    • n: number
    • alpha: number
    • a: Float64Array
    • lda: number
    • b: Float64Array
    • ldb: number
    • beta: number
    • c: Float64Array
    • ldc: number

    Returns void

Generated using TypeDoc