Plot a chart for the impulse response's `C80` by frequency `bands`.
(self, label='C80', yaxis='Clarity [dB]', **kwargs)
| 1105 | return self.plot_param('SPL', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1106 | |
| 1107 | def plot_C80(self, label='C80', yaxis='Clarity [dB]', **kwargs): |
| 1108 | """Plot a chart for the impulse response's `C80` by frequency `bands`.""" |
| 1109 | return self.plot_param('C80', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1110 | |
| 1111 | def plot_D50(self, label='D50', yaxis='Definition [%]', **kwargs): |
| 1112 | """Plot a chart for the impulse response's `D50` by frequency `bands`.""" |
nothing calls this directly
no test coverage detected