bandhic.sinh#

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

Perform element-wise ‘sinh’ operation.

Parameters:
  • x (band_hic_matrix) – Input matrix.

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

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

Returns:

Result of element-wise ‘sinh’ operation.

Return type:

band_hic_matrix

See also

numpy.sinh

Examples

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