Plot a chart for the impulse response's `T20` by frequency `bands`.
(self, label='T20', yaxis='Reverberation time [s]', **kwargs)
| 1113 | return self.plot_param('D50', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1114 | |
| 1115 | def plot_T20(self, label='T20', yaxis='Reverberation time [s]', **kwargs): |
| 1116 | """Plot a chart for the impulse response's `T20` by frequency `bands`.""" |
| 1117 | return self.plot_param('T20', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1118 | |
| 1119 | def plot_T30(self, label='T30', yaxis='Reverberation time [s]', **kwargs): |
| 1120 | """Plot a chart for the impulse response's `T30` by frequency `bands`.""" |
nothing calls this directly
no test coverage detected