bandhic.band_hic_matrix.arccosh#
- band_hic_matrix.arccosh(self, *args, **kwargs)#
Perform element-wise ‘arccosh’ operation.
- Parameters:
self (band_hic_matrix) – Input matrix.
*args (tuple) – Additional positional arguments for numpy.arccosh.
**kwargs (dict) – Keyword arguments for numpy.arccosh.
- Returns:
Result of element-wise ‘arccosh’ 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.arccosh()