bandhic.exp#

bandhic.exp(x, *args, **kwargs)#

Perform element-wise ‘exp’ operation.

Parameters:
  • x (band_hic_matrix) – Input matrix.

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

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

Returns:

Result of element-wise ‘exp’ operation.

Return type:

band_hic_matrix

See also

numpy.exp

Examples

>>> import bandhic as bh
>>> x1 = band_hic_matrix(np.eye(3), diag_num=2, dtype=int)
>>> result = bh.exp(x1)