CoxxFingerprint

Contents

CoxxFingerprint#

namedtuple lobsterpy.featurize.core.CoxxFingerprint(energies, coxx, fp_type, spin_type, n_bins, bin_width)[source]#

Represents a Coxx fingerprint.

This named tuple is used to store information related to a Coxx fingerprint, which includes energies, Coxx values, fingerprint type, spin type, number of bins, and bin width.

Fields:
  1.  energies (ndarray) – The energy values associated with the Coxx fingerprint.

  2.  coxx (ndarray) – The Coxx values corresponding to each energy.

  3.  fp_type (str) – The type of the Coxx fingerprint.

  4.  spin_type (str) – The spin type associated with the fingerprint.

  5.  n_bins (int) – The number of bins used in the Coxx fingerprint.

  6.  bin_width (float) – The width of each bin in the Coxx fingerprint.