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