Function dtrsm

  • solves one of the following matrix equations op(A) * X = alpha * B or X * op(A) = alpha * B where A is a unit or non-unit upper or lower triangular matrix

    Parameters

    • side: MatrixLeftRight
    • uplo: MatrixUpperLower
    • transa: MatrixTrans
    • diag: MatrixUnit
    • m: number
    • n: number
    • alpha: number
    • a: Float64Array
    • lda: number
    • b: Float64Array
    • ldb: number

    Returns void

Generated using TypeDoc