LoudnessANSI_S3_4#
- class ansys.sound.core.psychoacoustics.LoudnessANSI_S3_4(signal=None, field_type='Free')#
Computes ANSI S3.4-2007 loudness.
This class computes the loudness of a signal according to the ANSI S3.4-2007 standard. The scope of this standard is now covered by the ISO 532-2:2017 standard.
See also
Examples
Compute the loudness of a signal in free field.
>>> from ansys.sound.core.psychoacoustics import LoudnessANSI_S3_4 >>> loudness = LoudnessANSI_S3_4(signal=my_signal, field_type="Free") >>> loudness.process() >>> loudness_value = loudness.get_loudness_sone() >>> loudness_level_value = loudness.get_loudness_level_phon()
Class instantiation takes the following parameters.
- Parameters:
Methods
Get the loudness level in phon.
Get the loudness in sone.
Get loudness data.
Get loudness data in a tuple of NumPy arrays.
Plot the output.
Compute the loudness.
Attributes
Sound field type.
Input signal in Pa.