SparseMultiply(_:_:_:)
Performs the multiplication Y = AX for complex float values.
Declaration
func SparseMultiply(_ A: SparseMatrix_Complex_Float, _ X: DenseMatrix_Complex_Float, _ Y: DenseMatrix_Complex_Float)Parameters
- A:
(Input) sparse matrix.
- X:
(Input) dense matrix. Inner dimensions of
AandXmust match. - Y:
(Output) dense matrix. Dimensions must match the outer dimensions of
AandX. Overwritten with their product.