Contents

SparseMultiplyAdd(_:_:_:)

Performs Y += AX for complex double values

Declaration

func SparseMultiplyAdd(_ A: SparseMatrix_Complex_Double, _ X: DenseMatrix_Complex_Double, _ Y: DenseMatrix_Complex_Double)

Discussion

  • Parameter A: (input) sparse matrix.

  • Parameter X: (input) dense matrix. Inner dimensions of A and X must match.

  • Parameter Y: (output) dense matrix. Dimensions must match the outer dimensions of A and X. Overwritten with their product.

See Also

Complex multiply-add functions