Skip to content

Commit

Permalink
[NF] update of dataND names to include metric computation methodology
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Glesser committed Jun 21, 2022
1 parent 98bdd8b commit 85b50d2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mosqito/sq_metrics/loudness/loudness_zwst/loudness_zwst.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def loudness_zwst(signal, fs=None, field_type="free", is_sdt_output=False):
include_endpoint=True,
)
N_specific = DataFreq(
name="Specific Loudness",
name="Specific loudness (Zwicker method for stationnary signal)",
symbol="N'_{zwst}",
axes=[bark_data],
values=N_specific,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ def loudness_zwst_perseg(
include_endpoint=True,
)
N_specific = DataFreq(
name="Specific Loudness",
name="Specific loudness (Zwicker method for stationnary signal)",
symbol="N'_{zwst}",
axes=[bark_data, time],
values=N_specific,
unit="sone/Bark",
)
N = DataTime(
name="Loudness",
name="Loudness (Zwicker method for stationnary signal)",
symbol="N_{zwst}",
axes=[time],
values=N,
Expand Down
4 changes: 2 additions & 2 deletions mosqito/sq_metrics/roughness/roughness_dw/roughness_dw.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ def roughness_dw(signal, fs=None, overlap=0.5, is_sdt_output=False):
include_endpoint=True,
)
R_spec = DataFreq(
name="Specific Roughness",
name="Specific roughness (Daniel & Weber method)",
symbol="R'_{dw}",
axes=[bark_data, time],
values=R_spec,
unit="asper/Bark",
)
R = DataTime(
name="Roughness",
name="Roughness (Daniel & Weber method)",
symbol="R_{dw}",
axes=[time],
values=R,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def sharpness_din_perseg(
include_endpoint=True,
)
S = DataTime(
name="Sharpness",
name="Sharpness (DIN 45692)",
symbol="S_{DIN}",
axes=[time],
values=S,
Expand Down

0 comments on commit 85b50d2

Please sign in to comment.