bandhic.band_hic_matrix.log10#

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

Perform element-wise ‘log10’ operation.

Parameters:
  • self (band_hic_matrix) – Input matrix.

  • *args (tuple) – Additional positional arguments for numpy.log10.

  • **kwargs (dict) – Keyword arguments for numpy.log10.

Returns:

Result of element-wise ‘log10’ operation.

Return type:

band_hic_matrix

See also

numpy.log10

Examples

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