Skip to content

Commit 85b50d2

Browse files
author
Martin Glesser
committed
[NF] update of dataND names to include metric computation methodology
1 parent 98bdd8b commit 85b50d2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

mosqito/sq_metrics/loudness/loudness_zwst/loudness_zwst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def loudness_zwst(signal, fs=None, field_type="free", is_sdt_output=False):
9696
include_endpoint=True,
9797
)
9898
N_specific = DataFreq(
99-
name="Specific Loudness",
99+
name="Specific loudness (Zwicker method for stationnary signal)",
100100
symbol="N'_{zwst}",
101101
axes=[bark_data],
102102
values=N_specific,

mosqito/sq_metrics/loudness/loudness_zwst/loudness_zwst_perseg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ def loudness_zwst_perseg(
102102
include_endpoint=True,
103103
)
104104
N_specific = DataFreq(
105-
name="Specific Loudness",
105+
name="Specific loudness (Zwicker method for stationnary signal)",
106106
symbol="N'_{zwst}",
107107
axes=[bark_data, time],
108108
values=N_specific,
109109
unit="sone/Bark",
110110
)
111111
N = DataTime(
112-
name="Loudness",
112+
name="Loudness (Zwicker method for stationnary signal)",
113113
symbol="N_{zwst}",
114114
axes=[time],
115115
values=N,

mosqito/sq_metrics/roughness/roughness_dw/roughness_dw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ def roughness_dw(signal, fs=None, overlap=0.5, is_sdt_output=False):
123123
include_endpoint=True,
124124
)
125125
R_spec = DataFreq(
126-
name="Specific Roughness",
126+
name="Specific roughness (Daniel & Weber method)",
127127
symbol="R'_{dw}",
128128
axes=[bark_data, time],
129129
values=R_spec,
130130
unit="asper/Bark",
131131
)
132132
R = DataTime(
133-
name="Roughness",
133+
name="Roughness (Daniel & Weber method)",
134134
symbol="R_{dw}",
135135
axes=[time],
136136
values=R,

mosqito/sq_metrics/sharpness/sharpness_din/sharpness_din_perseg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def sharpness_din_perseg(
8686
include_endpoint=True,
8787
)
8888
S = DataTime(
89-
name="Sharpness",
89+
name="Sharpness (DIN 45692)",
9090
symbol="S_{DIN}",
9191
axes=[time],
9292
values=S,

0 commit comments

Comments
 (0)