bandhic.band_hic_matrix.conj#

band_hic_matrix.conj(self, *args, **kwargs)#

Perform element-wise ‘conj’ operation.

Parameters:
  • self (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:

band_hic_matrix

See also

numpy.conj

Examples

>>> from bandhic import band_hic_matrix
>>> mat = band_hic_matrix(np.eye(3), diag_num=2, dtype=int)
>>> result = mat.conj()