scipy.sparse.csc_matrix.conj¶
- 
csc_matrix.conj(self, copy=True)[source]¶ Element-wise complex conjugation.
If the matrix is of non-complex data type and
copyis False, this method does nothing and the data is not copied.- Parameters
 - copybool, optional
 If True, the result is guaranteed to not share data with self.
- Returns
 - AThe element-wise complex conjugate.
 
