bandhic.conj#
- bandhic.conj(x, *args, **kwargs)#
Perform element-wise ‘conj’ operation.
- Parameters:
x (band_hic_matrix) – Input matrix.
*args (tuple) – Additional positional arguments for numpy.conj.
**kwargs (dict) – Keyword arguments for numpy.conj.
- Returns:
Result of element-wise ‘conj’ operation.
- Return type:
See also
Examples
>>> import bandhic as bh >>> x1 = band_hic_matrix(np.eye(3), diag_num=2, dtype=int) >>> result = bh.conj(x1)